summaryrefslogtreecommitdiff
path: root/completions/puppet
blob: b9e1bcd6b4ff40c65e84d165a9b0acc75c4b857e (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# bash completion for puppet                               -*- shell-script -*-

_puppet_logdest()
{
    if [[ -z $cur ]]; then
        COMPREPLY=( $(compgen -W 'syslog console /' -- "$cur") )
    else
        COMPREPLY=( $(compgen -W 'syslog console' -- "$cur") )
        _filedir
    fi
}

_puppet_digest()
{
    COMPREPLY=( $(compgen -W 'MD5 MD2 SHA1 SHA256' -- "$cur") )
}

_puppet_certs()
{
    local puppetca="puppet cert"
    PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin type puppetca  &>/dev/null \
        && puppetca=puppetca

    if [[ "$1" == --all ]]; then
        cert_list=$($puppetca --list --all | command sed -e 's/^[+-]\{0,1\}\s*\(\S\+\)\s\+.*$/\1/')
    else
        cert_list=$($puppetca --list)
    fi
    COMPREPLY+=( $(compgen -W "$cert_list" -- "$cur") )
}

_puppet_types()
{
    puppet_types=$(puppet describe --list | command sed -e 's/^\(\S\{1,\}\).*$/\1/')
    COMPREPLY+=( $(compgen -W "$puppet_types" -- "$cur") )
}

_puppet_references()
{
    local puppetdoc="puppet doc"
    PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin type puppetdoc  &>/dev/null \
        && puppetdoc=puppetdoc

    puppet_doc_list=$($puppetdoc --list | command sed -e 's/^\(\S\{1,\}\).*$/\1/')
    COMPREPLY+=( $(compgen -W "$puppet_doc_list" -- "$cur") )
}

_puppet_subcmd_opts()
{
    # puppet cmd help is somewhat slow, avoid if possible
    [[ -z $cur || $cur == -* ]] && \
        COMPREPLY+=( $(compgen -W \
        '$(_parse_usage "$1" "help $2")' -- "$cur") )
}

_puppet()
{
    local cur prev words cword
    _init_completion || return

    local xspec helpopts subcommand action

    case $prev in
        -h|--help|-V|--version)
            return
            ;;
    esac

    case ${words[0]} in
        puppetmasterd)
            subcommand=master
            ;;
        puppetd)
            subcommand=agent
            ;;
        puppetca)
            subcommand=cert
            ;;
        ralsh)
            subcommand=resource
            ;;
        puppetrun)
            subcommand=kick
            ;;
        puppetqd)
            subcommand=queue
            ;;
        filebucket)
            subcommand=filebucket
            ;;
        puppetdoc)
            subcommand=doc
            ;;
        pi)
            subcommand=describe
            ;;
        puppet)
            case ${words[1]} in
                agent|apply|cert|describe|doc|filebucket|kick|master|parser|queue|resource)
                    subcommand=${words[1]}
                    ;;
                *.pp|*.rb)
                    subcommand=apply
                    ;;
                *)
                    COMPREPLY=( $(compgen -W 'agent apply cert describe doc
                        filebucket kick master parser queue resource' \
                        -- "$cur") )
                    return
                    ;;
            esac
    esac

    case $subcommand in
        agent)
            case $prev in
                --certname)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                --digest)
                    _puppet_digest
                    return
                    ;;
                --fqdn)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                -l|--logdest)
                    _puppet_logdest
                    return
                    ;;
                --masterport)
                    COMPREPLY=( $(compgen -W '8140' -- "$cur") )
                    return
                    ;;
                -w|--waitforcert)
                    COMPREPLY=( $(compgen -W '0 15 30 60 120' -- "$cur") )
                    return
                    ;;
                *)
                    _puppet_subcmd_opts "$1" $subcommand
                    # _parse_usage doesn't grok [-D|--daemonize|--no-daemonize]
                    COMPREPLY+=( $(compgen -W '--no-daemonize' -- "$cur") )
                    return
            esac
            ;;
        apply)
            case $prev in
                --catalog)
                    COMPREPLY=( $(compgen -W '-' -- "$cur") )
                    _filedir json
                    return
                    ;;
                --execute)
                    return
                    ;;
                -l|--logdest)
                    _puppet_logdest
                    return
                    ;;
                *)
                    if [[ "$cur" == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _filedir
                    fi
                    return
            esac
            ;;
        cert)
            case $prev in
                --digest)
                    _puppet_digest
                    return
                    ;;
                *)
                    action=$prev
                    COMPREPLY=( $(compgen -W '--digest --debug --help --verbose --version' \
                        -- "$cur") )
                    case $action in
                        fingerprint|list|verify|--fingerprint|--list|--verify)
                            COMPREPLY+=( $(compgen -W '--all' -- "$cur") )
                            _puppet_certs --all
                            return
                            ;;
                        generate|--generate)
                            _known_hosts_real -- "$cur"
                            return
                            ;;
                        clean|print|revoke|--clean|--print|--revoke)
                            _puppet_certs --all
                            return
                            ;;
                        sign|--sign)
                            COMPREPLY+=( $(compgen -W '--all' -- "$cur") )
                            _puppet_certs
                            return
                            ;;
                        *)
                            COMPREPLY+=( $(compgen -W 'clean fingerprint generate
                                list print revoke sign verify reinventory' -- "$cur") )
                            return
                    esac
            esac
            ;;
        describe)
            _puppet_subcmd_opts "$1" $subcommand
            if [[ "$cur" != -* ]]; then
                _puppet_types
            fi
            return
            ;;
        doc)
            case $prev in
                -o|--outputdir)
                    _filedir -d
                    return
                    ;;
                -m|--mode)
                    COMPREPLY=( $(compgen -W 'text trac pdf rdoc' -- "$cur") )
                    return
                    ;;
                -r|--reference)
                    _puppet_references
                    return
                    ;;
                *)
                    if [[ "$cur" == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _filedir
                    fi
                    return
            esac
            ;;
        filebucket)
            case $prev in
                -s|--server)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                -b|--bucket)
                    _filedir -d
                    return
                    ;;
                *)
                    if [[ "$cur" == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        COMPREPLY=( $(compgen -W 'backup get restore' \
                            -- "$cur") )
                        _filedir
                    fi
                    return
            esac
            ;;
        kick)
            case $prev in
                -c|--class)
                    return
                    ;;
                --host)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                -t|--tag)
                    return
                    ;;
                *)
                    if [[ "$cur" == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _known_hosts_real -- "$cur"
                    fi
                    return
            esac
            ;;
        master)
            case $prev in
                -l|--logdest)
                    _puppet_logdest
                    return
                    ;;
                *)
                    _puppet_subcmd_opts "$1" $subcommand
                    # _parse_usage doesn't grok [-D|--daemonize|--no-daemonize]
                    COMPREPLY+=( $(compgen -W '--no-daemonize' -- "$cur") )
                    return
            esac
            ;;
        parser)
            action=$prev
            case $action in
                validate)
                    _filedir pp
                    return
                    ;;
                *)
                    COMPREPLY=( $(compgen -W 'validate' -- "$cur") )
                    return
            esac
            ;;
        queue)
            case $prev in
                -l|--logdest)
                    _puppet_logdest
                    return
                    ;;
                *)
                    if [[ "$cur" == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _filedir
                    fi
                    return
            esac
            ;;
        resource|*)
            _puppet_subcmd_opts "$1" $subcommand
            return
            ;;
    esac
} &&
complete -F _puppet puppetmasterd puppetd puppetca ralsh puppetrun puppetqd filebucket puppetdoc puppet

# ex: filetype=sh