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-09-06 23:57:17 +0300
committerPromofaux <adzjwarner@gmail.com>2016-09-06 23:57:17 +0300
commit95ee3216c42151aa4fbaa17b80d587aad7180836 (patch)
tree8203fff46599b2b3d4608be2cf884b3e5d91d78a /advanced/bash-completion
parent3b5e409b38922b46353d8af516bd44a92114d903 (diff)
Add the newer pihole command tags to the bash auto complete!
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 e2c70558..2d6aafae 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="whitelist blacklist debug flush updateDashboard updateGravity setupLCD chronometer uninstall help"
+ opts="blacklist chronometer debug flush help query setupLCD uninstall updateDashboard updateGravity updatePihole version whitelist"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0