summaryrefslogtreecommitdiff
path: root/contrib/_yum-utils
blob: 1914ba0aed0c6f7f64e2bd8c3631684b007f6eee (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
28
29
30
31
32
# Use of this file is deprecated.  Upstream completion is available in
# yum-utils >= 1.1.24, use that instead.

# bash completion for repomanage

have repomanage &&
_repomanage()
{
    local cur prev

    COMPREPLY=()
    cur=`_get_cword`
    prev=${COMP_WORDS[COMP_CWORD-1]}

    [[ "$prev" == -@(h|-help|k|-keep) ]] && return 0

    if [[ "$cur" == -* ]] ; then
        COMPREPLY=( $( compgen -W '--old --new --space \
            --keep --nocheck --help' -- "$cur" ) )
    else
        _filedir -d
    fi
} &&
complete -F _repomanage -o filenames repomanage

# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh