|
|
|
|
@ -9,7 +9,7 @@ |
|
|
|
|
# Read around where these are used for more detail. |
|
|
|
|
|
|
|
|
|
# These flags should be available everywhere according to man knife |
|
|
|
|
knife_general_flags=( --help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes ) |
|
|
|
|
knife_general_flags=(--help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes) |
|
|
|
|
|
|
|
|
|
# knife has a very special syntax, some example calls are: |
|
|
|
|
# knife status |
|
|
|
|
@ -25,8 +25,8 @@ _knife() { |
|
|
|
|
typeset -A opt_args |
|
|
|
|
cloudproviders=(bluebox ec2 rackspace slicehost terremark) |
|
|
|
|
_arguments \ |
|
|
|
|
'1: :->knifecmd'\ |
|
|
|
|
'2: :->knifesubcmd'\ |
|
|
|
|
'1: :->knifecmd' \ |
|
|
|
|
'2: :->knifesubcmd' \ |
|
|
|
|
'3: :->knifesubcmd2' \ |
|
|
|
|
'4: :->knifesubcmd3' \ |
|
|
|
|
'5: :->knifesubcmd4' \ |
|
|
|
|
@ -38,7 +38,7 @@ _knife() { |
|
|
|
|
;; |
|
|
|
|
knifesubcmd) |
|
|
|
|
case $words[2] in |
|
|
|
|
(bluebox|ec2|rackspace|slicehost|terremark) |
|
|
|
|
bluebox|ec2|rackspace|slicehost|terremark) |
|
|
|
|
compadd "$@" server images |
|
|
|
|
;; |
|
|
|
|
client) |
|
|
|
|
@ -76,6 +76,7 @@ _knife() { |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
_arguments '2:Subsubcommands:($(_knife_options1))' |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
;; |
|
|
|
|
knifesubcmd2) |
|
|
|
|
@ -89,10 +90,10 @@ _knife() { |
|
|
|
|
site) |
|
|
|
|
compadd "$@" vendor show share search download list unshare |
|
|
|
|
;; |
|
|
|
|
(show|delete|edit) |
|
|
|
|
show|delete|edit) |
|
|
|
|
_arguments '3:Subsubcommands:($(_chef_$words[2]s_remote))' |
|
|
|
|
;; |
|
|
|
|
(upload|test) |
|
|
|
|
upload|test) |
|
|
|
|
_arguments '3:Subsubcommands:($(_chef_$words[2]s_local) --all)' |
|
|
|
|
;; |
|
|
|
|
list) |
|
|
|
|
@ -103,6 +104,7 @@ _knife() { |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
_arguments '3:Subsubcommands:($(_knife_options2))' |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
;; |
|
|
|
|
knifesubcmd3) |
|
|
|
|
@ -113,12 +115,14 @@ _knife() { |
|
|
|
|
versioncomp=1 |
|
|
|
|
_arguments '4:Cookbookversions:($(_cookbook_versions) latest)' |
|
|
|
|
;; |
|
|
|
|
(node|client|role) |
|
|
|
|
node|client|role) |
|
|
|
|
compadd "$@" --attribute |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
case $words[4] in |
|
|
|
|
(show|edit) |
|
|
|
|
show|edit) |
|
|
|
|
_arguments '4:Subsubsubcommands:($(_chef_$words[2]_$words[3]s_remote))' |
|
|
|
|
;; |
|
|
|
|
file) |
|
|
|
|
@ -134,6 +138,7 @@ _knife() { |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
_arguments '*:Subsubcommands:($(_knife_options3))' |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
;; |
|
|
|
|
list) |
|
|
|
|
@ -141,17 +146,18 @@ _knife() { |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
_arguments '*:Subsubcommands:($(_knife_options3))' |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
;; |
|
|
|
|
knifesubcmd4) |
|
|
|
|
if (( versioncomp > 0 )); then |
|
|
|
|
if ((versioncomp > 0)); then |
|
|
|
|
compadd "$@" attributes definitions files libraries providers recipes resources templates |
|
|
|
|
else |
|
|
|
|
case $words[5] in |
|
|
|
|
file) |
|
|
|
|
_arguments '*:directory:_path_files -/ -W "$(_chef_root)/data_bags" -qS \ ' |
|
|
|
|
;; |
|
|
|
|
*) _arguments '*:Subsubcommands:($(_knife_options2))' |
|
|
|
|
*) _arguments '*:Subsubcommands:($(_knife_options2))' ;; |
|
|
|
|
esac |
|
|
|
|
fi |
|
|
|
|
;; |
|
|
|
|
@ -162,21 +168,23 @@ _knife() { |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
_arguments '*:Subsubcommands:($(_knife_options3))' |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Helper functions to provide the argument completion for several depths of commands |
|
|
|
|
_knife_options1() { |
|
|
|
|
( for line in $( knife $words[2] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) |
|
|
|
|
(for line in $(knife $words[2] --help | grep -v "^knife"); do echo $line | grep "\-\-"; done) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_knife_options2() { |
|
|
|
|
( for line in $( knife $words[2] $words[3] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) |
|
|
|
|
(for line in $(knife $words[2] $words[3] --help | grep -v "^knife"); do echo $line | grep "\-\-"; done) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_knife_options3() { |
|
|
|
|
( for line in $( knife $words[2] $words[3] $words[4] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) |
|
|
|
|
(for line in $(knife $words[2] $words[3] $words[4] --help | grep -v "^knife"); do echo $line | grep "\-\-"; done) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# The chef_x_remote functions use knife to get a list of objects of type x on the server |
|
|
|
|
@ -217,7 +225,7 @@ _chef_cookbooks_local() { |
|
|
|
|
if [ -f ./.chef/knife.rb ]; then |
|
|
|
|
knife_rb="./.chef/knife.rb" |
|
|
|
|
fi |
|
|
|
|
local cookbook_path=${KNIFE_COOKBOOK_PATH:-$(grep cookbook_path $knife_rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' )} |
|
|
|
|
local cookbook_path=${KNIFE_COOKBOOK_PATH:-$(grep cookbook_path $knife_rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/')} |
|
|
|
|
fi |
|
|
|
|
(for i in $cookbook_path; do ls $i; done) |
|
|
|
|
} |
|
|
|
|
@ -229,10 +237,9 @@ _cookbook_versions() { |
|
|
|
|
|
|
|
|
|
# Searches up from current directory to find the closest folder that has a .chef folder |
|
|
|
|
# Useful for the knife upload/from file commands |
|
|
|
|
_chef_root () { |
|
|
|
|
_chef_root() { |
|
|
|
|
directory="$PWD" |
|
|
|
|
while [ $directory != '/' ] |
|
|
|
|
do |
|
|
|
|
while [ $directory != '/' ]; do |
|
|
|
|
test -e "$directory/.chef" && echo "$directory" && return |
|
|
|
|
directory="${directory:h}" |
|
|
|
|
done |
|
|
|
|
|