mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Add knife solo plugin command autocompletion to knife
This commit is contained in:
parent
b0e4381471
commit
0eea37b00d
1 changed files with 9 additions and 6 deletions
|
|
@ -28,10 +28,10 @@ _knife() {
|
||||||
'4: :->knifesubcmd3' \
|
'4: :->knifesubcmd3' \
|
||||||
'5: :->knifesubcmd4' \
|
'5: :->knifesubcmd4' \
|
||||||
'6: :->knifesubcmd5'
|
'6: :->knifesubcmd5'
|
||||||
|
|
||||||
case $state in
|
case $state in
|
||||||
knifecmd)
|
knifecmd)
|
||||||
compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" diff exec environment index node recipe role search ssh status upload windows $cloudproviders
|
compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" diff exec environment index node recipe role search solo ssh status windows $cloudproviders
|
||||||
;;
|
;;
|
||||||
knifesubcmd)
|
knifesubcmd)
|
||||||
case $words[2] in
|
case $words[2] in
|
||||||
|
|
@ -56,12 +56,15 @@ _knife() {
|
||||||
node)
|
node)
|
||||||
compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete"
|
compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete"
|
||||||
;;
|
;;
|
||||||
|
solo)
|
||||||
|
compadd -Q "$@" init prepare cook bootstrap clean
|
||||||
|
;;
|
||||||
recipe)
|
recipe)
|
||||||
compadd "$@" list
|
compadd "$@" list
|
||||||
;;
|
;;
|
||||||
role)
|
role)
|
||||||
compadd -Q "$@" "bulk delete" create delete edit "from file" list show
|
compadd -Q "$@" "bulk delete" create delete edit "from file" list show
|
||||||
;;
|
;;
|
||||||
upload)
|
upload)
|
||||||
_arguments '*:file or directory:_files -g "*"'
|
_arguments '*:file or directory:_files -g "*"'
|
||||||
;;
|
;;
|
||||||
|
|
@ -131,8 +134,8 @@ _knife() {
|
||||||
else
|
else
|
||||||
_arguments '*:Subsubcommands:($(_knife_options2))'
|
_arguments '*:Subsubcommands:($(_knife_options2))'
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
knifesubcmd5)
|
knifesubcmd5)
|
||||||
_arguments '*:Subsubcommands:($(_knife_options3))'
|
_arguments '*:Subsubcommands:($(_knife_options3))'
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
@ -181,7 +184,7 @@ _chef_environments_remote() {
|
||||||
|
|
||||||
# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server
|
# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server
|
||||||
_chef_cookbooks_local() {
|
_chef_cookbooks_local() {
|
||||||
|
|
||||||
local knife_rb=${KNIFE_CONF_PATH:-${HOME}/.chef/knife.rb}
|
local knife_rb=${KNIFE_CONF_PATH:-${HOME}/.chef/knife.rb}
|
||||||
if [ -f ./.chef/knife.rb ]; then
|
if [ -f ./.chef/knife.rb ]; then
|
||||||
knife_rb="./.chef/knife.rb"
|
knife_rb="./.chef/knife.rb"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue