2012-08-09 23:59:01 +00:00
|
|
|
# written by David Pravec
|
|
|
|
# - feel free to /msg alekibango on IRC if you want to talk about this file
|
|
|
|
|
|
|
|
# TODO: check if --config|-c was used and use configured config file for queries
|
|
|
|
# TODO: solve somehow completion for salt -G pythonversion:[tab]
|
|
|
|
# (not sure what to do with lists)
|
|
|
|
# TODO: --range[tab] -- how?
|
|
|
|
# TODO: -E --exsel[tab] -- how?
|
|
|
|
# TODO: --compound[tab] -- how?
|
|
|
|
# TODO: use history to extract some words, esp. if ${cur} is empty
|
|
|
|
# TODO: TEST EVERYTING a lot
|
|
|
|
# TODO: cache results of some functions? where? how long?
|
|
|
|
# TODO: is it ok to use '--timeout 2' ?
|
|
|
|
|
|
|
|
|
|
|
|
_salt_get_grains(){
|
|
|
|
if [ "$1" = 'local' ] ; then
|
2012-12-06 09:02:26 +00:00
|
|
|
salt-call --out=txt -- grains.ls | sed 's/^.*\[//' | tr -d ",']" |sed 's:\([a-z0-9]\) :\1\: :g'
|
2012-08-09 23:59:01 +00:00
|
|
|
else
|
2012-12-06 09:02:26 +00:00
|
|
|
salt '*' --timeout 2 --out=txt -- grains.ls | sed 's/^.*\[//' | tr -d ",']" |sed 's:\([a-z0-9]\) :\1\: :g'
|
2012-08-09 23:59:01 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_salt_get_grain_values(){
|
|
|
|
if [ "$1" = 'local' ] ; then
|
2012-12-06 09:02:26 +00:00
|
|
|
salt-call --out=txt -- grains.item $1 |sed 's/^\S*:\s//' |grep -v '^\s*$'
|
2012-08-09 23:59:01 +00:00
|
|
|
else
|
2012-12-06 09:02:26 +00:00
|
|
|
salt '*' --timeout 2 --out=txt -- grains.item $1 |sed 's/^\S*:\s//' |grep -v '^\s*$'
|
2012-08-09 23:59:01 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_salt(){
|
|
|
|
local cur prev opts _salt_grains _salt_coms pprev ppprev
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
if [ ${COMP_CWORD} -gt 2 ]; then
|
|
|
|
pprev="${COMP_WORDS[COMP_CWORD-2]}"
|
|
|
|
fi
|
|
|
|
if [ ${COMP_CWORD} -gt 3 ]; then
|
|
|
|
ppprev="${COMP_WORDS[COMP_CWORD-3]}"
|
|
|
|
fi
|
|
|
|
|
2012-12-06 09:02:26 +00:00
|
|
|
opts="--help -h --version -c --compound --out=raw --out=txt --out=json --no-color \
|
2012-08-09 23:59:01 +00:00
|
|
|
--timeout -t --static -s --batch-size -b -E --pcre -L --list \
|
|
|
|
-G --grain --grain-pcre -X --exsel -N --nodegroup -R --range --return \
|
|
|
|
-Q --query -c --config -s --static -t --timeout \
|
|
|
|
-b --batch-size -X --exsel"
|
|
|
|
|
|
|
|
if [[ "${cur}" == -* ]] ; then
|
|
|
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# 2 special cases for filling up grain values
|
|
|
|
case "${pprev}" in
|
|
|
|
-G|--grain|--grain-pcre)
|
|
|
|
if [ "${cur}" = ":" ]; then
|
|
|
|
COMPREPLY=($(compgen -W "`_salt_get_grain_values ${prev}`" ))
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
case "${ppprev}" in
|
|
|
|
-G|--grain|--grain-pcre)
|
|
|
|
if [ "${prev}" = ":" ]; then
|
|
|
|
COMPREPLY=( $(compgen -W "`_salt_get_grain_values ${pprev}`" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ "${cur}" = "=" ] && [[ "${prev}" == --* ]]; then
|
|
|
|
cur=""
|
|
|
|
fi
|
|
|
|
if [ "${prev}" = "=" ] && [[ "${pprev}" == --* ]]; then
|
|
|
|
prev="${pprev}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "${prev}" in
|
|
|
|
|
|
|
|
-c|--config)
|
|
|
|
COMPREPLY=($(compgen -f -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
salt)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "\'*\' ${opts} `salt-key --no-color -l acc`" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-E|--pcre)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "`salt-key --no-color -l acc`" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-G|--grain|--grain-pcre)
|
|
|
|
COMPREPLY=($(compgen -W "$(_salt_get_grains)" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-C|--compound)
|
|
|
|
COMPREPLY=() # TODO: finish this one? how?
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-t|--timeout)
|
|
|
|
COMPREPLY=($( compgen -W "1 2 3 4 5 6 7 8 9 10 15 20 30 40 60 90 120 180" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-b|--batch|--batch-size)
|
|
|
|
COMPREPLY=($(compgen -W "1 2 3 4 5 6 7 8 9 10 15 20 30 40 50 60 70 80 90 100 120 150 200"))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-X|--exsel) # TODO: finish this one? how?
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-N|--nodegroup)
|
|
|
|
MASTER_CONFIG='/etc/salt/master'
|
|
|
|
COMPREPLY=($(compgen -W "`awk -F ':' 'BEGIN {print_line = 0}; /^nodegroups/ {print_line = 1;getline } print_line && /^ */ {print $1} /^[^ ]/ {print_line = 0}' <${MASTER_CONFIG}`" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2012-12-06 09:02:26 +00:00
|
|
|
_salt_coms="$(salt '*' --timeout 2 --out=txt -- sys.list_functions | sed 's/^.*\[//' | tr -d ",']" )"
|
2012-08-09 23:59:01 +00:00
|
|
|
all="${opts} ${_salt_coms}"
|
|
|
|
COMPREPLY=( $(compgen -W "${all}" -- ${cur}) )
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _salt salt
|
|
|
|
|
|
|
|
|
|
|
|
_saltkey(){
|
|
|
|
local cur prev opts prev pprev
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
opts="--version -h --help -l --list -L --list-all -a --accept \
|
|
|
|
-R --reject-all -p --print -P --print-all -r --reject \
|
|
|
|
-d --delete -q --quiet -D --delete-all --key-logfile -c \
|
|
|
|
--config -q --quiet --gen-keys --gen-keys-dir \
|
|
|
|
--keysize accept-all -A "
|
|
|
|
if [ ${COMP_CWORD} -gt 2 ]; then
|
|
|
|
pprev="${COMP_WORDS[COMP_CWORD-2]}"
|
|
|
|
fi
|
|
|
|
if [ ${COMP_CWORD} -gt 3 ]; then
|
|
|
|
ppprev="${COMP_WORDS[COMP_CWORD-3]}"
|
|
|
|
fi
|
|
|
|
if [[ "${cur}" == -* ]] ; then
|
|
|
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${cur}" = "=" ] && [[ "${prev}" == --* ]]; then
|
|
|
|
cur=""
|
|
|
|
fi
|
|
|
|
if [ "${prev}" = "=" ] && [[ "${pprev}" == --* ]]; then
|
|
|
|
prev="${pprev}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "${prev}" in
|
|
|
|
-a|--accept)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "$(salt-key -l un --no-color; salt-key -l rej --no-color)" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-r|--reject)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "$(salt-key -l acc --no-color)" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-d|--delete)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "$(salt-key -l acc --no-color; salt-key -l un --no-color; salt-key -l rej --no-color)" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-c|--config)
|
|
|
|
COMPREPLY=($(compgen -f -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--keysize)
|
|
|
|
COMPREPLY=($(compgen -W "2048 3072 4096 5120 6144" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--gen-keys)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--gen-keys-dir)
|
|
|
|
COMPREPLY=($(compgen -d -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-p|--print)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "$(salt-key -l acc --no-color; salt-key -l un --no-color; salt-key -l rej --no-color)" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-l|--list)
|
|
|
|
COMPREPLY=($(compgen -W "pre un acc accepted unaccepted rej rejected all" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--accept-all)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
COMPREPLY=($(compgen -W "${opts} " -- ${cur}))
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _saltkey salt-key
|
|
|
|
|
|
|
|
_saltcall(){
|
|
|
|
local cur prev opts _salt_coms pprev ppprev
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2012-12-06 09:02:26 +00:00
|
|
|
opts="-h --help -l --log-level -d --doc -m --module-dirs --out=raw --out=txt --out=yaml --out=json --no-color"
|
2012-08-09 23:59:01 +00:00
|
|
|
if [ ${COMP_CWORD} -gt 2 ]; then
|
|
|
|
pprev="${COMP_WORDS[COMP_CWORD-2]}"
|
|
|
|
fi
|
|
|
|
if [ ${COMP_CWORD} -gt 3 ]; then
|
|
|
|
ppprev="${COMP_WORDS[COMP_CWORD-3]}"
|
|
|
|
fi
|
|
|
|
if [[ "${cur}" == -* ]] ; then
|
|
|
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${cur}" = "=" ] && [[ ${prev} == --* ]]; then
|
|
|
|
cur=""
|
|
|
|
fi
|
|
|
|
if [ "${prev}" = "=" ] && [[ ${pprev} == --* ]]; then
|
|
|
|
prev="${pprev}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case ${prev} in
|
|
|
|
-m|--module-dirs)
|
|
|
|
COMPREPLY=( $(compgen -d ${cur} ))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-l|--log-level)
|
|
|
|
COMPREPLY=( $(compgen -W "info none garbage trace warning error debug" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-g|grains)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
salt-call)
|
|
|
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2012-12-06 09:02:26 +00:00
|
|
|
_salt_coms="$(salt-call --out=txt -- sys.list_functions|sed 's/^.*\[//' | tr -d ",']" )"
|
2012-08-09 23:59:01 +00:00
|
|
|
COMPREPLY=( $(compgen -W "${opts} ${_salt_coms}" -- ${cur} ))
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _saltcall salt-call
|
|
|
|
|
|
|
|
|
|
|
|
_saltcp(){
|
|
|
|
local cur prev opts target prefpart postpart helper filt pprev ppprev
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
opts="-h --help -L --list -E --pcre -G --grain --grain-pcre -R --range -C --compound -c --config= -t --timeout= "
|
|
|
|
if [[ "${cur}" == -* ]] ; then
|
|
|
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${cur}" = "=" ] && [[ "${prev}" == --* ]]; then
|
|
|
|
cur=""
|
|
|
|
fi
|
|
|
|
if [ "${prev}" = "=" ] && [[ "${pprev}" == --* ]]; then
|
|
|
|
prev=${pprev}
|
|
|
|
fi
|
|
|
|
|
|
|
|
case ${prev} in
|
|
|
|
salt-cp)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "${opts} `salt-key -l acc --no-color`" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-t|--timeout)
|
|
|
|
# those numbers are just a hint
|
|
|
|
COMPREPLY=($(compgen -W "2 3 4 8 10 15 20 25 30 40 60 90 120 180 240 300" -- ${cur} ))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-E|--pcre)
|
2012-12-06 09:02:26 +00:00
|
|
|
COMPREPLY=($(compgen -W "`salt-key -l acc --no-color`" -- ${cur}))
|
2012-08-09 23:59:01 +00:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-L|--list)
|
|
|
|
# IMPROVEMENTS ARE WELCOME
|
|
|
|
prefpart="${cur%,*},"
|
|
|
|
postpart=${cur##*,}
|
|
|
|
filt="^\($(echo ${cur}| sed 's:,:\\|:g')\)$"
|
2012-12-06 09:02:26 +00:00
|
|
|
helper=($(salt-key -l acc --no-color | grep -v "${filt}" | sed "s/^/${prefpart}/"))
|
2012-08-09 23:59:01 +00:00
|
|
|
COMPREPLY=($(compgen -W "${helper[*]}" -- ${cur}))
|
|
|
|
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-G|--grain|--grain-pcre)
|
|
|
|
COMPREPLY=($(compgen -W "$(_salt_get_grains)" -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
# FIXME
|
|
|
|
-R|--range)
|
|
|
|
# FIXME ??
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-C|--compound)
|
|
|
|
# FIXME ??
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-c|--config)
|
|
|
|
COMPREPLY=($(compgen -f -- ${cur}))
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# default is using opts:
|
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _saltcp salt-cp
|