diff options
author | Steven Danna <steve@opscode.com> | 2012-12-16 23:49:37 -0800 |
---|---|---|
committer | Bryan McLellan <btm@opscode.com> | 2013-02-06 09:49:04 -0800 |
commit | cd7178d0ed7b7eb1df1063ee03d2946ff7d482f1 (patch) | |
tree | 7db72f1d17ecf89f6a6339e53dadc035bf4c12fd /lib/chef/knife/user_show.rb | |
parent | 1afeec4c3275d2bdff87f2321c40f7968cf51fc6 (diff) | |
download | chef-cd7178d0ed7b7eb1df1063ee03d2946ff7d482f1.tar.gz |
Add user commands to knife.
This commit adds the following commands to knife:
knife user list
knife user show USERNAME
knife user create USERNAME
knife user delete USERNAME
knife user reregister USERNAME
Note that since Chef::User objects do not contain a json_class, the
edit object method will not work as expecated.
Diffstat (limited to 'lib/chef/knife/user_show.rb')
-rw-r--r-- | lib/chef/knife/user_show.rb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/lib/chef/knife/user_show.rb b/lib/chef/knife/user_show.rb new file mode 100644 index 0000000000..5088210b4d --- /dev/null +++ b/lib/chef/knife/user_show.rb @@ -0,0 +1,52 @@ +# +# Author:: Steven Danna (<steve@opscode.com>) +# Copyright:: Copyright (c) 2009 Opscode, Inc. +# License:: Apache License, Version 2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +require 'chef/knife' + +class Chef + class Knife + class UserShow < Knife + + deps do + require 'chef/user' + require 'chef/json_compat' + end + + banner "knife user show USER (options)" + + option :attribute, + :short => "-a ATTR", + :long => "--attribute ATTR", + :description => "Show only one attribute" + + def run + @user_name = @name_args[0] + + if @user_name.nil? + show_usage + ui.fatal("You must specify a user name") + exit 1 + end + + user = Chef::User.load(@user_name) + output(format_for_display(user)) + end + + end + end +end |