commit: switch diags improvement

pull/44/head
Alec Muffett 2019-11-10 14:25:14 +00:00
rodzic ee6d445ff2
commit 32c6d9995d
1 zmienionych plików z 4 dodań i 4 usunięć

8
eotk
Wyświetl plik

@ -62,22 +62,22 @@ flag_boot=false
propagate_flags=""
while : ; do
case "x$1" in
x--local) ## runs commands locally, ignoring onionbalance if configured
x--local) ## [command] ... | runs commands locally, ignoring onionbalance if configured
flag_local=true
propagate_flags="$propagate_flags $1"
shift
;;
x--boot) ## used by startup scripts
x--boot) ## [command] ... | used by startup scripts
flag_boot=true
propagate_flags="$propagate_flags $1"
shift
;;
x--remote) ## used during remote execution on workers
x--remote) ## [command] ... | used during remote execution on workers
flag_remote=true
propagate_flags="$propagate_flags $1"
shift
;;
x--debug) ## enables execution tracing
x--debug) ## [command] ... | enables execution tracing
set -x
shift
;;