implemented cron mode

This commit is contained in:
2021-10-27 11:14:09 +02:00
parent 2ad37e8fe3
commit bcd5130866
3 changed files with 33 additions and 3 deletions

View File

@@ -76,7 +76,10 @@ read_commandline()
export RUN_SHELL=true
;;
"--chroot")
local want_chroot
local want_chroot=true
;;
"--cron")
export CRON_MODE=true
;;
*)
if [[ $want_module == true ]]; then
@@ -273,13 +276,20 @@ process_commandline_and_vars()
fi
fi
if [[ $CRON_MODE == true ]]; then
if [[ $CHECK_ONLY == true || $JUMP == true ]]; then
prnt E "Des paramètres sont incompatibles avec le mode cron."
die 15 --force
fi
fi
# Configure module list
if [[ -n $MANUAL_MODULE_LIST ]]; then
prnt W "Une liste de modules manuelle sera utilisé."
export MODULE_LIST=$(echo $MANUAL_MODULE_LIST | sed "s/,/ /g")
fi
# Check for module list existance en basic syntax
# Check for module list existance and basic syntax
if [[ -n $MODULE_LIST ]]; then
if [[ $(echo $MODULE_LIST | grep '-') ]]; then
prnt E "Le tiret est interdit dans les noms de module."