File: buildbot-slave.bash-completion

package info (click to toggle)
buildbot-slave 0.8.12-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,016 kB
  • sloc: python: 9,267; sh: 196; makefile: 19
file content (50 lines) | stat: -rw-r--r-- 1,217 bytes parent folder | download | duplicates (4)
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
#
# This file installs BASH completions for 'buildslave' command.
#

_buildslave()
{
    local buildslave_subcommands="
        create-slave upgrade-slave start stop restart"

    local cur=${COMP_WORDS[COMP_CWORD]}
    local subcommand=
    local subcommand_args=
    local i=1

    #
    # 'parse' the command line so far
    # figure out if we have subcommand specified and any arguments to it
    #

    # skip global options
    while [[ "${COMP_WORDS[$i]}" == -* ]];
    do
        i=$(($i+1))
    done

    # save subcommand
    subcommand=${COMP_WORDS[$i]}
    i=$(($i+1))

    # skip subcommand options
    while [[ "${COMP_WORDS[$i]}" == -* ]];
    do
        i=$(($i+1))
    done

    # save subcommand arguments
    subcommand_args=${COMP_WORDS[@]:$i:${#COMP_WORDS[@]}}

    if [ "$cur" == "$subcommand" ]; then
        # suggest buildbot subcommands
        COMPREPLY=( $(compgen -W "$buildslave_subcommands" $cur) )
    elif [ "$cur" == "$subcommand_args" ]; then
        # we are at first subcommand argument
        # all subcommands can have slave base directory as first argument
        # suggest directories
	COMPREPLY=( $(compgen -A directory $cur) )
    fi
}

complete -F _buildslave buildslave