fix confusion of sysrescue-customize and systemrescue-customize in online help

The script is called "sysrescue-customize", so make sure to use that everywhere.
This commit is contained in:
Gerd v. Egidy 2022-01-15 22:43:13 +01:00
parent 5797294798
commit 90d494026f

View file

@ -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=<ISO-FILE> -d|--dest=<DIR>"
echo "sysrescue-customize --unpack -s|--source=<ISO-FILE> -d|--dest=<DIR>"
echo " [-o|--overwrite] [-v|--verbose]"
echo ""
echo "Usage in rebuild mode:"
echo "systemrescue-customize --rebuild -s|--source=<DIR> -d|--dest=<ISO-FILE>"
echo "sysrescue-customize --rebuild -s|--source=<DIR> -d|--dest=<ISO-FILE>"
echo " [-m|--srm-dir=<DIR>] [-o|--overwrite] [-v|--verbose]"
echo ""
echo "Usage in auto-mode:"
echo "systemrescue-customize --auto -s|--source=<ISO-FILE> -d|--dest=<ISO-FILE>"
echo "sysrescue-customize --auto -s|--source=<ISO-FILE> -d|--dest=<ISO-FILE>"
echo " -r|--recipe-dir=<DIR> [-w|--work-dir=<DIR>] [-o|--overwrite] [-v|--verbose]"
echo ""
echo "--source=<ISO or DIR> 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
}