diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-07-23 09:24:39 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-07-23 09:29:02 -0400 |
commit | 4bc5d27b942afa83cc3d95debd2ad48d42ac07a8 (patch) | |
tree | 2bc0e22fbdfcd9077062be00b167f9a78b11a18f /shell-completion | |
parent | 8ae12e733c5369a7e6360eaa5c942ea05fe44bde (diff) | |
download | systemd-4bc5d27b942afa83cc3d95debd2ad48d42ac07a8.tar.gz |
Drop busname unit type
Since busname units are only useful with kdbus, they weren't actively
used. This was dead code, only compile-tested. If busname units are
ever added back, it'll be cleaner to start from scratch (possibly reverting
parts of this patch).
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/zsh/_sd_unit_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/zsh/_sd_unit_files b/shell-completion/zsh/_sd_unit_files index 3e7a4ee803..5e90ea23c5 100644 --- a/shell-completion/zsh/_sd_unit_files +++ b/shell-completion/zsh/_sd_unit_files @@ -5,5 +5,5 @@ _sd_unit_files() { files=( '*:files:->files' ) _description files expl 'unit file' - _files "$expl[@]" -g '*.(automount|busname|device|mount|path|service|socket|swap|target|timer)' + _files "$expl[@]" -g '*.(automount|device|mount|path|service|socket|swap|target|timer)' } |