chg: [LAUNCH] Addded a "restart" option, killAll + launchAuto

dev
Steve Clement 2024-01-18 11:42:37 +01:00
parent 72a892d797
commit 1a02b6d768
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,7 @@ function helptext {
LAUNCH.sh
[-l | --launchAuto] LAUNCH DB + Scripts
[-k | --killAll] Kill DB + Scripts
[-kl | --killLaunch] Kill All & launchAuto
[-ks | --killscript] Scripts
[-u | --update] Update AIL
[-ut | --thirdpartyUpdate] Update UI/Frontend
@ -695,6 +696,9 @@ while [ "$1" != "" ]; do
;;
-k | --killAll ) killall;
;;
-kl | --killLaunch ) killall;
launch_all "automatic";
;;
-ks | --killscript ) killscript;
;;
-m | --menu ) menu_display;