diff options
author | Martin Pitt <martinpitt@users.noreply.github.com> | 2017-07-28 09:29:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 09:29:07 +0200 |
commit | 9fcaa574f07c3159281584643b573a80b5c1a843 (patch) | |
tree | 8c9b91a13719e599665a8ffb20d226ea2bc0ba7b /shell-completion | |
parent | mkosi.arch: fix comment (#6470) (diff) | |
parent | nspawn: do not mount /sys/fs/kdbus (diff) | |
download | systemd-9fcaa574f07c3159281584643b573a80b5c1a843.tar.xz systemd-9fcaa574f07c3159281584643b573a80b5c1a843.zip |
Merge pull request #6465 from keszybz/drop-kdbus
Drop kdbus-dependent code
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)' } |