From 90d494026fec06bef218c28b9efc218c1b3bccbb Mon Sep 17 00:00:00 2001 From: "Gerd v. Egidy" Date: Sat, 15 Jan 2022 22:43:13 +0100 Subject: [PATCH] fix confusion of sysrescue-customize and systemrescue-customize in online help The script is called "sysrescue-customize", so make sure to use that everywhere. --- airootfs/usr/share/sysrescue/bin/sysrescue-customize | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/airootfs/usr/share/sysrescue/bin/sysrescue-customize b/airootfs/usr/share/sysrescue/bin/sysrescue-customize index 6f1f358..8b4a01a 100755 --- a/airootfs/usr/share/sysrescue/bin/sysrescue-customize +++ b/airootfs/usr/share/sysrescue/bin/sysrescue-customize @@ -5,7 +5,7 @@ # Author: Gerd v. Egidy # SPDX-License-Identifier: GPL-3.0-or-later # -# see https://www.system-rescue.org/scripts/systemrescue-customize/ for details +# see https://www.system-rescue.org/scripts/sysrescue-customize/ for details # bash-checks right at the top due to many bashisms in the rest of the script if [ -n "$POSIXLY_CORRECT" ] || [ -z "$BASH_VERSION" ]; then @@ -27,18 +27,18 @@ ISOHYBRID_MBR="isolinux/isohdpfx.bin" print_help() { - echo "systemrescue-customize - customize an existing SystemRescue iso image" + echo "sysrescue-customize - customize an existing SystemRescue iso image" echo "" echo "Usage in unpack mode:" - echo "systemrescue-customize --unpack -s|--source= -d|--dest=" + echo "sysrescue-customize --unpack -s|--source= -d|--dest=" echo " [-o|--overwrite] [-v|--verbose]" echo "" echo "Usage in rebuild mode:" - echo "systemrescue-customize --rebuild -s|--source= -d|--dest=" + echo "sysrescue-customize --rebuild -s|--source= -d|--dest=" echo " [-m|--srm-dir=] [-o|--overwrite] [-v|--verbose]" echo "" echo "Usage in auto-mode:" - echo "systemrescue-customize --auto -s|--source= -d|--dest=" + echo "sysrescue-customize --auto -s|--source= -d|--dest=" echo " -r|--recipe-dir= [-w|--work-dir=] [-o|--overwrite] [-v|--verbose]" echo "" echo "--source= unpack and auto: iso file (or raw block device)" @@ -63,7 +63,7 @@ print_help() echo " will overwrite existing files without questions." echo "--verbose Verbose output when running xorriso." echo "" - echo "See https://www.system-rescue.org/scripts/systemrescue-customize/ for details." + echo "See https://www.system-rescue.org/scripts/sysrescue-customize/ for details." return }