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-12-14 22:53:40 +0300
committerPromofaux <adzjwarner@gmail.com>2016-12-14 22:53:40 +0300
commite7713a9028fce828cfb02406bc972fa42c4bcc17 (patch)
tree31548cd7cd41a5211d6289db6a524b6f034d8a80 /advanced/bash-completion
parent9a80421d73195fb3fce59f53a5571c195d358f1f (diff)
add missing pihole autocomplete commands
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 dd3f050d..05baa820 100644
--- a/advanced/bash-completion/pihole
+++ b/advanced/bash-completion/pihole
@@ -3,7 +3,7 @@ _pihole() {
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
- opts="blacklist chronometer debug flush help query reconfigure setupLCD uninstall updateGravity updatePihole version whitelist"
+ opts="admin blacklist chronometer debug disable enable flush help logging query reconfigure restartdns setupLCD status tail uninstall updateGravity updatePihole version whitelist"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0