diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-10 17:34:41 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-10 17:34:56 -0500 |
commit | 820aced6f6067a6b7c57b7d36e44f64378870cbf (patch) | |
tree | 0ae317c817c4f4793e2ef7e268737e9f52bfb0ba /shell-completion | |
parent | de24871ebf92422892a6eaed9f28b2a3a5f64572 (diff) | |
download | systemd-820aced6f6067a6b7c57b7d36e44f64378870cbf.tar.gz |
zsh-completion: remove duplicate functionv218
https://bugs.archlinux.org/task/43069
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/zsh/_systemctl.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/shell-completion/zsh/_systemctl.in b/shell-completion/zsh/_systemctl.in index 04cd94518a..3fa59faca1 100644 --- a/shell-completion/zsh/_systemctl.in +++ b/shell-completion/zsh/_systemctl.in @@ -142,7 +142,6 @@ _filter_units_by_property() { done } -_systemctl_all_units() { { __systemctl list-unit-files; __systemctl list-units --all; } | { while read -r a b; do [[ $a =~ @\. ]] || echo -E - " $a"; done; } } _systemctl_get_template_names() { __systemctl list-unit-files | { while read -r a b; do [[ $a =~ @\. ]] && echo -E - " ${a%%@.*}@"; done; } } |