mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Explicitly allow only -r and --refresh in argument handler
It is already checked, but this make the code explicit. Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
parent
422680ee9f
commit
add5e4ca5e
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ chronoFunc() {
|
|||
fi
|
||||
|
||||
# Get refresh number
|
||||
if [[ "$*" == *"-r"* ]]; then
|
||||
if [[ "$*" == *"-r" || "$*" == *"-r "* || "$*" == *"--refresh" || "$*" == *"--refresh "* ]]; then
|
||||
num="$*"
|
||||
num="${num/*-r* /}"
|
||||
num_str="Refresh set for every $num seconds"
|
||||
|
|
Loading…
Reference in a new issue