2011-11-01 22:14:45 +02:00
|
|
|
# munin-run completion -*- shell-script -*-
|
2011-10-12 23:01:10 +03:00
|
|
|
|
|
|
|
_munin_run()
|
|
|
|
{
|
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
|
|
|
|
|
|
|
case $prev in
|
|
|
|
--config|--sconffile)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--servicedir|--sconfdir)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
|
|
|
|
else
|
add_members, bk, gcc, mtx, munin-run, munindoc, mutt, p4, portinstall, postmap, ri, ypmatch: Avoid stderr spewage when needed commands/dirs are not available.
2011-10-22 11:48:23 +03:00
|
|
|
COMPREPLY=( $( compgen -W \
|
|
|
|
'$( command ls /etc/munin/plugins 2>/dev/null )' -- "$cur" ) )
|
2011-10-12 23:01:10 +03:00
|
|
|
fi
|
|
|
|
} &&
|
|
|
|
complete -F _munin_run munin-run
|
|
|
|
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|