summaryrefslogtreecommitdiff
path: root/completions/usermod
blob: 3d0efdbddfd19927b5a43e06d0cf70ba6f5d22fc (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
# 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[@]} -eq 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