Files
Zbigniew Jędrzejewski-Szmek b76c90d451 shell-completion: systemd-analyze verify, systemctl link
Some zsh completion helpers were not installed, so completion
was broken.

Add systemd-analyze verify. Make systemctl link complete only
unit names.

(cherry picked from commit 2c12a402cb)

Conflicts:
	TODO

[backport: undo verify and busname changes]
2014-10-26 18:23:46 -04:00

10 lines
235 B
Plaintext

#autoload
_sd_unit_files() {
local files expl
files=( '*:files:->files' )
_description files expl 'unit file'
_files "$expl[@]" -g '*.(automount|busname|device|mount|path|service|snapshot|socket|swap|target|timer)'
}