Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPromofaux <adzjwarner@gmail.com>2016-10-15 22:12:16 +0300
committerPromofaux <adzjwarner@gmail.com>2016-10-15 22:12:16 +0300
commit7e10dcdcf05034416920a8f0c5a3a16557951d34 (patch)
treed5bd30d0ac449215b4db1a7f3196a270a4a8e249 /advanced/bash-completion
parent7ee1110351fe5bffc6cc9de7c29fd24b440c7213 (diff)
update pihole bash-completion
Diffstat (limited to 'advanced/bash-completion')
-rw-r--r--advanced/bash-completion/pihole2
1 files changed, 1 insertions, 1 deletions
diff --git a/advanced/bash-completion/pihole b/advanced/bash-completion/pihole
index 2d6aafae..1fae988d 100644
--- a/advanced/bash-completion/pihole
+++ b/advanced/bash-completion/pihole
@@ -4,7 +4,7 @@ _pihole()
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
- opts="blacklist chronometer debug flush help query setupLCD uninstall updateDashboard updateGravity updatePihole version whitelist"
+ opts="blacklist chronometer debug flush help query reconfigure setupLCD uninstall updateGravity updatePihole version whitelist"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0