summaryrefslogtreecommitdiff
path: root/completions/usermod
blob: 77ab33c8027676ea307b763f1537b2ec946fd869 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# usermod(8) completion                                    -*- shell-script -*-

_usermod()
{
    local cur prev words cword split
    _init_completion -s || return

    # TODO: if -o/--non-unique is given, could complete on existing uids
    #       with -u/--uid

    case $prev in
        --comment | --home | --expiredate | --inactive | --help | --login | --password | \
            --uid | --selinux-user | -!(-*)[cdefhlpuZ])
            return
            ;;
        --gid | -!(-*)g)
            _gids
            COMPREPLY=($(compgen -W '${COMPREPLY[@]} $(compgen -g)' \
                -- "$cur"))
            return
            ;;
        --groups | -!(-*)G)
            local prefix=
            [[ $cur == *,* ]] && prefix="${cur%,*},"
            COMPREPLY=($(compgen -g -- "${cur##*,}"))
            ((${#COMPREPLY[@]} == 1)) && COMPREPLY=(${COMPREPLY/#/$prefix})
            return
            ;;
        --root | -!(-*)R)
            _filedir -d
            return
            ;;
        --shell | -!(-*)s)
            _shells
            return
            ;;
    esac

    $split && return

    if [[ $cur == -* ]]; then
        # TODO: -U/--unlock, -p/--password, -L/--lock mutually exclusive
        COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
        return
    fi

    COMPREPLY=($(compgen -u -- "$cur"))
} &&
    complete -F _usermod usermod

# ex: filetype=sh