diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-27 21:34:28 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-30 00:01:56 -0400 |
commit | 2a7401c74e2ac03e0f738fcddecfb7d7835460bb (patch) | |
tree | 1374c90f9422c3870345ad30ad5db56bef98ea84 | |
parent | e02f23eef784445c585666257dd8fc181c9f45ca (diff) |
shell-completion: systemctl set-default,get-default,is-system-running
(cherry picked from commit 1cf3c30c0787f941b0f6d0b11ab504ddee3b0b8f)
Conflicts:
TODO
shell-completion/bash/systemctl.in
[stable: removed changes for is-system-running]
-rw-r--r-- | shell-completion/zsh/_systemctl.in | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/shell-completion/zsh/_systemctl.in b/shell-completion/zsh/_systemctl.in index 89b04e193..da16bc94b 100644 --- a/shell-completion/zsh/_systemctl.in +++ b/shell-completion/zsh/_systemctl.in @@ -29,6 +29,8 @@ "disable:Disable one or more unit files" "reenable:Reenable one or more unit files" "preset:Enable/disable one or more unit files based on preset configuration" + "set-default:Set the default target" + "get-default:Query the default target" "help:Show documentation for specified units" "list-dependencies:Show unit dependency tree" "mask:Mask one or more units" @@ -235,21 +237,28 @@ done (( $+functions[_systemctl_unmask] )) || _systemctl_unmask() { _systemctl_masked_units - compadd "$@" -a - _sys_masked_units || _message "no masked unit found" + compadd "$@" -a - _sys_masked_units || _message "no masked units found" } # Completion functions for JOBS (( $+functions[_systemctl_cancel] )) || _systemctl_cancel() { compadd "$@" - $(__systemctl list-jobs \ - | cut -d' ' -f1 2>/dev/null ) || _message "no job found" + | cut -d' ' -f1 2>/dev/null ) || _message "no jobs found" } # Completion functions for SNAPSHOTS (( $+functions[_systemctl_delete] )) || _systemctl_delete() { compadd "$@" - $(__systemctl list-units --type snapshot --all \ - | cut -d' ' -f1 2>/dev/null ) || _message "no snapshot found" + | cut -d' ' -f1 2>/dev/null ) || _message "no snapshots found" +} + +# Completion functions for TARGETS +(( $+functions[_systemctl_set-default] )) || _systemctl_set-default() +{ + compadd "$@" - $(__systemctl list-unit-files --type target --all \ + | cut -d' ' -f1 2>/dev/null ) || _message "no targets found" } # Completion functions for ENVS |