[systemd-commits] shell-completion/bash shell-completion/zsh
Zbigniew JÄdrzejewski-Szmek
zbyszek at kemper.freedesktop.org
Mon Aug 12 09:05:09 PDT 2013
shell-completion/bash/systemctl | 7 ++++++-
shell-completion/zsh/_systemctl | 2 +-
2 files changed, 7 insertions(+), 2 deletions(-)
New commits:
commit 631c922c68ec1fc5c34077c1d95b76eff38e1608
Author: Zbigniew JÄdrzejewski-Szmek <zbyszek at in.waw.pl>
Date: Mon Aug 12 12:01:55 2013 -0400
shell-completion: tell bash about --state
diff --git a/shell-completion/bash/systemctl b/shell-completion/bash/systemctl
index 517b49a..5346eef 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'
;;
diff --git a/shell-completion/zsh/_systemctl b/shell-completion/zsh/_systemctl
index 70d6f33..f78dc19 100644
--- a/shell-completion/zsh/_systemctl
+++ b/shell-completion/zsh/_systemctl
@@ -304,7 +304,7 @@ _arguments -s \
{-h,--help}'[Show help]' \
'--version[Show package version]' \
{-t,--type=}'[List only units of a particular type]:unit type:(automount device mount path service snapshot socket swap target timer)' \
- '--state=[Display units in the specifyied state]:unit state:(loaded failed active inactive not-found listening running waiting plugged mounted exited dead masked)' \
+ '--state=[Display units in the specified state]:unit state:(loaded failed active inactive not-found listening running waiting plugged mounted exited dead masked)' \
\*{-p,--property=}'[Show only properties by specific name]:unit property' \
{-a,--all}'[Show all units/properties, including dead/empty ones]' \
'--reverse[Show reverse dependencies]' \
More information about the systemd-commits
mailing list