summaryrefslogtreecommitdiff
path: root/shell-completion
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2014-10-16 09:41:02 +0200
committerLukas Nykryn <lnykryn@redhat.com>2014-10-19 18:20:06 +0200
commit8fc5cd71be8e7ca3dabc74f487fc7e969ce808f5 (patch)
tree28f3fca71984efbeb1bc12096e3ae9c62420d727 /shell-completion
parent4a3e79e1b6ac12b15efb46df0c42275376ee8e7b (diff)
shell-completion/bash: add add-wants and add-requires
Diffstat (limited to 'shell-completion')
-rw-r--r--shell-completion/bash/systemctl.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/shell-completion/bash/systemctl.in b/shell-completion/bash/systemctl.in
index afa80dad7..8c1ecd486 100644
--- a/shell-completion/bash/systemctl.in
+++ b/shell-completion/bash/systemctl.in
@@ -74,6 +74,7 @@ __get_disabled_units () { __systemctl $1 list-unit-files \
| { while read -r a b c ; do [[ $b == "disabled" ]] && echo " $a"; done; }; }
__get_masked_units () { __systemctl $1 list-unit-files \
| { while read -r a b c ; do [[ $b == "masked" ]] && echo " $a"; done; }; }
+__get_all_unit_files () { { __systemctl $1 list-unit-files; } | { while read -r a b; do echo " $a"; done; }; }
_systemctl () {
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
@@ -139,6 +140,7 @@ _systemctl () {
[ISOLATABLE_UNITS]='isolate'
[RELOADABLE_UNITS]='reload condreload reload-or-try-restart force-reload'
[RESTARTABLE_UNITS]='restart reload-or-restart'
+ [TARGET_AND_UNITS]='add-wants add-requires'
[MASKED_UNITS]='unmask'
[JOBS]='cancel'
[SNAPSHOTS]='delete'
@@ -217,6 +219,16 @@ _systemctl () {
comps=$( __get_masked_units $mode )
compopt -o filenames
+ elif __contains_word "$verb" ${VERBS[TARGET_AND_UNITS]}; then
+ if __contains_word "$prev" ${VERBS[TARGET_AND_UNITS]} \
+ || __contains_word "$prev" ${OPTS[STANDALONE]}; then
+ comps=$( __systemctl $mode list-unit-files --type target --all \
+ | { while read -r a b; do echo " $a"; done; } )
+ else
+ comps=$( __get_all_unit_files $mode )
+ fi
+ compopt -o filenames
+
elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[NAME]}; then
comps=''