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
|
# 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 | sed -e 's/^[+-]\?\s*\(\S\+\)\s\+.*$/\1/' )
else
cert_list=$( $puppetca --list )
fi
COMPREPLY+=( $( compgen -W "$cert_list" -- "$cur" ) )
}
_puppet_types()
{
puppet_types=$( puppet describe --list | sed -e 's/^\(\S\+\).*$/\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 | sed -e 's/^\(\S\+\).*$/\1/' )
COMPREPLY+=( $( compgen -W "$puppet_doc_list" -- "$cur" ) )
}
_puppet()
{
local cur prev words cword
_init_completion || return
local xspec helpopts command subcommand
case $prev in
--help)
return 0
;;
esac
case ${words[0]} in
puppetmasterd)
command=master
;;
puppetd)
command=agent
;;
puppetca)
command=cert
;;
ralsh)
command=resource
;;
puppetrun)
command=kick
;;
puppetqd)
command=queue
;;
filebucket)
command=filebucket
;;
puppetdoc)
command=doc
;;
pi)
command=describe
;;
puppet)
case ${words[1]} in
agent|apply|cert|describe|doc|filebucket|kick|master|queue|resource)
command=${words[1]}
;;
*.pp|*.rb|-*)
command=apply
;;
*)
COMPREPLY=( $( compgen -W 'agent apply cert describe doc
filebucket kick master queue resource' -- "$cur" ) )
return 0
;;
esac
esac
case $command in
agent)
case $prev in
--fqdn)
return 0
;;
--logdest)
_puppet_logdest
return 0
;;
--serve)
# From /usr/lib/ruby/1.8/puppet/network/handler/
COMPREPLY=( $( compgen -W 'ca filebucket fileserver master
report runner status' -- "$cur" ) )
return 0
;;
--digest)
_puppet_digest
return 0
;;
--waitforcert)
COMPREPLY=( $( compgen -W '0 15 30 60 120' -- "$cur" ) )
return 0
;;
*)
COMPREPLY=( $( compgen -W '--daemonize --no-daemonize
--debug --detailed-exitcodes --disable --enable --help
--fqdn --logdest --onetime --serve --test --noop
--digest --fingerprint --version --verbose
--waitforcert --no-client' -- "$cur" ) )
return 0
esac
;;
apply)
case $prev in
--logdest)
_puppet_logdest
return 0
;;
*)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--help --version --debug
--verbose --execute --detailed-exitcodes
--logdest' -- "$cur" ) )
else
_filedir
fi
return 0
esac
;;
cert)
case $prev in
--digest)
_puppet_digest
return 0
;;
*)
subcommand=$prev
COMPREPLY=( $( compgen -W '--digest --debug --verbose' \
-- "$cur" ) )
case $subcommand in
--generate)
_known_hosts_real "$cur"
return 0
;;
--clean|--fingerprint|--revoke|--verify)
COMPREPLY+=( $( compgen -W '--all' -- "$cur" ) )
_puppet_certs --all
return 0
;;
--sign)
COMPREPLY+=( $( compgen -W '--all' -- "$cur" ) )
_puppet_certs
return 0
;;
--list|--print)
COMPREPLY+=( $( compgen -W '--all' -- "$cur" ) )
return 0
;;
*)
COMPREPLY=( $( compgen -W '--clean --generate
--help --list --print --fingerprint --revoke
--sign --version --verify' -- "$cur" ) )
return 0
esac
esac
;;
describe)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--help --short --providers --list
--meta' -- "$cur" ) )
else
_puppet_types
fi
return 0
;;
doc)
case $prev in
--outputdir)
_filedir -d
return 0
;;
--mode)
COMPREPLY=( $( compgen -W 'text trac pdf rdoc' -- "$cur" ) )
return 0
;;
--reference)
_puppet_references
return 0
;;
*)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--all --help --outputdir
--mode --reference --charset --list' -- "$cur" ) )
else
_filedir
fi
return 0
esac
;;
filebucket)
case $prev in
--server)
_known_hosts_real "$cur"
return 0
;;
--bucket)
_filedir -d
return 0
;;
*)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--help --version --debug
--verbose --local --remote --server --bucket' \
-- "$cur" ) )
else
COMPREPLY=( $( compgen -W 'backup get restore' \
-- "$cur" ) )
_filedir
fi
return 0
esac
;;
kick)
case $prev in
--class)
return 0
;;
--host)
_known_hosts_real "$cur"
return 0
;;
--tag)
return 0
;;
*)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--all --class --debug
--foreground --help --host --no-fqdn
--ignoreschedules --tag --test --ping' -- "$cur" ) )
else
_known_hosts_real "$cur"
fi
return 0
esac
;;
master)
case $prev in
--logdest)
_puppet_logdest
return 0
;;
*)
COMPREPLY=( $( compgen -W '--daemonize --no-daemonize
--debug --help --logdest --verbose --version' \
-- "$cur" ) )
return 0
esac
;;
queue)
case $prev in
--logdest)
_puppet_logdest
return 0
;;
*)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--help --version --debug
--verbose --execute --detailed-exitcodes
--logdest' -- "$cur" ) )
else
_filedir
fi
return 0
esac
;;
resource|*)
COMPREPLY=( $( compgen -W '--help --version --debug --verbose' \
-- "$cur" ) )
return 0
;;
esac
} &&
complete -F _puppet puppetmasterd puppetd puppetca ralsh puppetrun puppetqd filebucket puppetdoc puppet
# ex: ts=4 sw=4 et filetype=sh
|