zsh completion: add _kernel-install

This commit is contained in:
Daniel Wallace 2013-08-02 21:38:14 -05:00 committed by Zbigniew Jędrzejewski-Szmek
parent d267e69da4
commit 7eb942c408
2 changed files with 27 additions and 0 deletions

View file

@ -347,6 +347,7 @@ dist_zshcompletion_DATA = \
shell-completion/zsh/_systemctl \
shell-completion/zsh/_journalctl \
shell-completion/zsh/_udevadm \
shell-completion/zsh/_kernel-install \
shell-completion/zsh/_systemd-nspawn \
shell-completion/zsh/_systemd-analyze \
shell-completion/zsh/_systemd

View file

@ -0,0 +1,26 @@
#compdef kernel-install
_images(){
if [[ "$words[2]" == "remove" ]]; then
_message 'No more options'
else
_path_files -W /boot/ -P /boot/ -g "vmlinuz-*"
fi
}
_kernels(){
read _MACHINE_ID < /etc/machine-id
_kernel=( /lib/modules/[0-9]* )
if [[ "$cmd" == "remove" && -n "$_MACHINE_ID" ]]; then
_kernel=( /lib/modules/[0-9]* "/boot/$_MACHINE_ID"/[0-9]* )
fi
_kernel=( ${_kernel##*/} )
_describe "installed kernels" _kernel
}
_arguments \
'1::add or remove:(add remove)' \
'2::kernel versions:_kernels' \
'3::kernel images:_images'
#vim: set ft=zsh sw=4 ts=4 et