mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
zsh completion: add _kernel-install
This commit is contained in:
parent
d267e69da4
commit
7eb942c408
@ -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
|
||||
|
26
shell-completion/zsh/_kernel-install
Normal file
26
shell-completion/zsh/_kernel-install
Normal 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
|
Loading…
Reference in New Issue
Block a user