Class: Chef::Knife::RoleCreate

Inherits:
Chef::Knife show all
Defined in:
lib/chef/knife/role_create.rb

Instance Attribute Summary

Attributes inherited from Chef::Knife

#name_args

Instance Method Summary collapse

Methods inherited from Chef::Knife

#ask_question, build_sub_class, #bulk_delete, #configure_chef, #confirm, #create_object, #delete_object, #edit_data, #edit_object, #file_exists_and_is_readable?, find_command, #format_for_display, #format_list_for_display, #json_pretty_print, list_commands, load_commands, #load_from_file, #pretty_print, #rest

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string

Instance Method Details

#runObject



34
35
36
37
38
39
# File 'lib/chef/knife/role_create.rb', line 34

def run 
  role = Chef::Role.new
  role.name(@name_args[0])
  role.description(config[:description]) if config[:description]
  create_object(role)
end