blob: 8766eaee2eb0e26f8b89ff19e3706d6357942119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# munin-update completion -*- shell-script -*-
_munin_update()
{
local cur prev words cword
_init_completion || return
case $prev in
--config)
_filedir
return
;;
--host)
_known_hosts_real -- "$cur"
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '--force-root --noforce-root --service --host
--config --help --debug --nodebug --fork --nofork --stdout
--nostdout --timeout' -- "$cur"))
fi
} &&
complete -F _munin_update munin-update
# ex: filetype=sh
|