From a017d3f212919813031dc4c7da83aa45aa78102f Mon Sep 17 00:00:00 2001 From: Mark Cornick Date: Sat, 23 Mar 2013 10:20:43 -0400 Subject: [PATCH] Add completion for knife user commands These commands were added in Chef 11.0.0. --- src/_knife | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/_knife b/src/_knife index 8d51d99..be55e56 100644 --- a/src/_knife +++ b/src/_knife @@ -44,7 +44,7 @@ _knife() { case $state in knifecmd) - compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" environment exec index node recipe role search ssh status windows $cloudproviders + compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" environment user exec index node recipe role search ssh status windows $cloudproviders ;; knifesubcmd) case $words[2] in @@ -63,6 +63,9 @@ _knife() { environment) compadd -Q "$@" create delete edit "from file" list show ;; + user) + compadd -Q "$@" create delete edit list reregister show + ;; node) compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete" ;; @@ -186,6 +189,10 @@ _chef_environments_remote() { (knife environment list | awk '{print $1}') } +_chef_users_remote() { + (knife user list | awk '{print $1}') +} + # 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() { (for i in $( grep cookbook_path $HOME/.chef/knife.rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' ); do ls $i; done)