PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /usr/share/rear/lib/ |
| Server: Linux server62.dnsserverboot.com 6.8.1-1.el7.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Mar 15 15:39:22 EDT 2024 x86_64 IP: 94.23.164.13 |
| Dir : //usr/share/rear/lib/help-workflow.sh |
# help-workflow.sh
#
# help workflow for Relax-and-Recover
#
# This file is part of Relax-and-Recover, licensed under the GNU General
# Public License. Refer to the included COPYING for full text of license.
LOCKLESS_WORKFLOWS=( ${LOCKLESS_WORKFLOWS[@]} help )
function WORKFLOW_help () {
# Output the help text to the original STDOUT but keep STDERR in the log file:
cat 1>&7 <<EOF
Usage: $PROGRAM [-h|--help] [-V|--version] [-dsSv] [-D|--debugscripts SET] [-c DIR] [-C CONFIG] [-r KERNEL] [--] COMMAND [ARGS...]
$PRODUCT comes with ABSOLUTELY NO WARRANTY; for details see
the GNU General Public License at: http://www.gnu.org/licenses/gpl.html
Available options:
-h --help usage information (this text)
-c DIR alternative config directory; instead of /etc/rear
-C CONFIG additional config file; absolute path or relative to config directory
-d debug mode; log debug messages (also sets -v verbose mode)
-D debugscript mode (implies -v -d); log executed commands (via 'set -x')
--debugscripts SET same as -d -v -D but debugscript mode with 'set -SET'
-r KERNEL kernel version to use; current: '$KERNEL_VERSION'
-s simulation mode; show what scripts are run (without executing them)
-S step-by-step mode; acknowledge each script individually
-v verbose mode; show more output (and run many commands in verbose mode)
-V --version version information
List of commands:
EOF
# Output all workflow descriptions to the original STDOUT but keep STDERR in the log file:
for workflow in ${WORKFLOWS[@]} ; do
description=WORKFLOW_${workflow}_DESCRIPTION
# in some workflows WORKFLOW_${workflow}_DESCRIPTION
# is only defined if "$VERBOSE" is set - currently (18. Nov. 2015) for those
# WORKFLOW_savelayout_DESCRIPTION WORKFLOW_shell_DESCRIPTION WORKFLOW_udev_DESCRIPTION
# so that an empty default is used to avoid that ${!description} is an unbound variable:
test "${!description:-}" && printf " %-16s%s\n" $workflow "${!description:-}"
done 1>&7
# Output the text to the original STDOUT but keep STDERR in the log file:
test "$VERBOSE" || echo "Use 'rear -v help' for more advanced commands." 1>&7
}