summaryrefslogtreecommitdiff
path: root/completions/munin-update
blob: ac770a6b70da9a67d6321cff1a79e822856b90e1 (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