Add --noautoupdate option to start and restart

This commit is contained in:
Ben Peddell 2016-01-22 18:51:32 +10:00
parent 4ca8617bc9
commit 49a2b029bc

View File

@ -1728,7 +1728,7 @@ while true; do
doRun doRun
;; ;;
start) start)
doStart doStart "${options[@]}"
;; ;;
stop) stop)
doStop shutdown "${options[@]}" doStop shutdown "${options[@]}"
@ -1785,7 +1785,7 @@ while true; do
for instance in "${instances[@]}"; do for instance in "${instances[@]}"; do
( (
useConfig "$instance" useConfig "$instance"
doStart doStart "${options[@]}"
echo "`timestamp`: start" >> "$logdir/$arkmanagerLog" echo "`timestamp`: start" >> "$logdir/$arkmanagerLog"
echo "`timestamp`: restart" >> "$logdir/$arkmanagerLog" echo "`timestamp`: restart" >> "$logdir/$arkmanagerLog"
) )