Add exit code to status function

Signed-off-by: Christian König <ckoenig@posteo.de>
pull/4663/head
Christian König 2 years ago
parent 614d18cd3d
commit 722a716de3
No known key found for this signature in database
GPG Key ID: 4CDA6F249DD2B485

@ -365,7 +365,7 @@ statusFunc() {
# Enable blocking
"${PI_HOLE_BIN_DIR}"/pihole enable
fi
exit 0
}
tailFunc() {
@ -549,6 +549,7 @@ case "${1}" in
"--regex" | "regex" ) listFunc "$@";;
"--white-regex" | "white-regex" ) listFunc "$@";;
"--white-wild" | "white-wild" ) listFunc "$@";;
"-d" | "debug" ) debugFunc "$@";;
"-f" | "flush" ) flushFunc "$@";;
"-up" | "updatePihole" ) updatePiholeFunc "$@";;
"-r" | "reconfigure" ) reconfigurePiholeFunc;;
@ -557,7 +558,6 @@ case "${1}" in
"uninstall" ) uninstallFunc;;
"enable" ) piholeEnable 1;;
"disable" ) piholeEnable 0 "$2";;
"-d" | "debug" ) debugFunc "$@";;
"restartdns" ) restartDNS "$2";;
"-a" | "admin" ) webpageFunc "$@";;
"checkout" ) piholeCheckoutFunc "$@";;

Loading…
Cancel
Save