Using shift to allow passing multiple arguments

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign 2022-11-23 15:33:49 -03:00
parent f3c27f706f
commit 233453267e
No known key found for this signature in database
GPG key ID: AE3C7FC910687F33

4
pihole
View file

@ -425,7 +425,7 @@ tricorderFunc() {
}
updateCheckFunc() {
"${PI_HOLE_SCRIPT_DIR}"/updatecheck.sh "$1"
"${PI_HOLE_SCRIPT_DIR}"/updatecheck.sh "$@"
exit 0
}
@ -553,7 +553,7 @@ case "${1}" in
"restartdns" ) restartDNS "$2";;
"-a" | "admin" ) webpageFunc "$@";;
"checkout" ) piholeCheckoutFunc "$@";;
"updatechecker" ) updateCheckFunc "$2";;
"updatechecker" ) shift; updateCheckFunc "$@";;
"arpflush" ) arpFunc "$@";;
"-t" | "tail" ) tailFunc "$2";;
esac