Class: ChefCLI::Command::CleanPolicyCookbooks
- Includes:
- ChefCLI::Configurable
- Defined in:
- lib/chef-cli/command/clean_policy_cookbooks.rb
Instance Attribute Summary collapse
-
#policy_group ⇒ Object
readonly
Returns the value of attribute policy_group.
-
#policy_name ⇒ Object
readonly
Returns the value of attribute policy_name.
-
#ui ⇒ Object
Returns the value of attribute ui.
Instance Method Summary collapse
- #apply_params!(params) ⇒ Object
- #clean_policy_cookbooks_service ⇒ Object
- #debug? ⇒ Boolean
- #handle_error(error) ⇒ Object
-
#initialize(*args) ⇒ CleanPolicyCookbooks
constructor
A new instance of CleanPolicyCookbooks.
- #run(params) ⇒ Object
Methods included from ChefCLI::Configurable
#chef_config, #chefcli_config, #config_loader, #default_chef_server_http_client, #generator_config, #knife_config, #reset_config!
Methods inherited from Base
#check_license_acceptance, #needs_help?, #needs_version?, #run_with_default_options
Methods included from Helpers
#err, #git_bin_dir, #git_windows_bin_dir, #msg, #omnibus_bin_dir, #omnibus_embedded_bin_dir, #omnibus_env, #omnibus_expand_path, #omnibus_install?, #omnibus_root, #package_home, #stderr, #stdout, #system_command, #usr_bin_path, #usr_bin_prefix
Constructor Details
#initialize(*args) ⇒ CleanPolicyCookbooks
Returns a new instance of CleanPolicyCookbooks.
54 55 56 57 58 59 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 54 def initialize(*args) super @ui = UI.new @clean_policy_cookbooks_service = nil end |
Instance Attribute Details
#policy_group ⇒ Object (readonly)
Returns the value of attribute policy_group.
52 53 54 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 52 def policy_group @policy_group end |
#policy_name ⇒ Object (readonly)
Returns the value of attribute policy_name.
50 51 52 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 50 def policy_name @policy_name end |
#ui ⇒ Object
Returns the value of attribute ui.
48 49 50 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 48 def ui @ui end |
Instance Method Details
#apply_params!(params) ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 90 def apply_params!(params) remaining_args = (params) if !remaining_args.empty? ui.err("Too many arguments") ui.err("") ui.err(opt_parser) false else true end end |
#clean_policy_cookbooks_service ⇒ Object
71 72 73 74 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 71 def clean_policy_cookbooks_service @clean_policy_cookbooks_service ||= PolicyfileServices::CleanPolicyCookbooks.new(config: chef_config, ui: ui) end |
#debug? ⇒ Boolean
76 77 78 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 76 def debug? !!config[:debug] end |
#handle_error(error) ⇒ Object
80 81 82 83 84 85 86 87 88 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 80 def handle_error(error) ui.err("Error: #{error.}") if error.respond_to?(:reason) ui.err("Reason: #{error.reason}") ui.err("") ui.err(error.extended_error_info) if debug? ui.err(error.cause.backtrace.join("\n")) if debug? end end |
#run(params) ⇒ Object
61 62 63 64 65 66 67 68 69 |
# File 'lib/chef-cli/command/clean_policy_cookbooks.rb', line 61 def run(params) return 1 unless apply_params!(params) clean_policy_cookbooks_service.run 0 rescue PolicyfileServiceError => e handle_error(e) 1 end |