X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=shell-completion%2Fbash%2Fsystemctl;fp=shell-completion%2Fbash%2Fsystemctl;h=5346eef65bda660d1dd82a9d16b507a0350ac555;hp=517b49a6afda79ed587518cbf80431660d1f71bd;hb=631c922c68ec1fc5c34077c1d95b76eff38e1608;hpb=a6f0104a16350a4c2660837da6e0e5c2e50e2389 diff --git a/shell-completion/bash/systemctl b/shell-completion/bash/systemctl index 517b49a6a..5346eef65 100644 --- a/shell-completion/bash/systemctl +++ b/shell-completion/bash/systemctl @@ -74,7 +74,7 @@ _systemctl () { [STANDALONE]='--all -a --reverse --after --before --defaults --fail --ignore-dependencies --failed --force -f --full -l --global --help -h --no-ask-password --no-block --no-legend --no-pager --no-reload --no-wall --quiet -q --privileged -P --system --user --version --runtime' - [ARG]='--host -H --kill-mode --kill-who --property -p --signal -s --type -t --root' + [ARG]='--host -H --kill-mode --kill-who --property -p --signal -s --type -t --state --root' ) if __contains_word "--user" ${COMP_WORDS[*]}; then @@ -91,6 +91,11 @@ _systemctl () { --type|-t) comps='automount device mount path service snapshot socket swap target timer' ;; + --state) + comps='loaded not-found stub + active inactive + dead elapsed exited listening mounted plugged running waiting' + ;; --kill-who) comps='all control main' ;;