Class: Facter::Cli
- Inherits:
-
Thor
- Object
- Thor
- Facter::Cli
- Defined in:
- lib/facter/framework/cli/cli.rb
Class Method Summary collapse
Instance Method Summary collapse
- #arg_parser(*args) ⇒ Object
- #help(*args) ⇒ Object
- #list_block_groups ⇒ Object
- #list_cache_groups ⇒ Object
- #man(*args) ⇒ Object
- #query(*args) ⇒ Object
- #version(*_args) ⇒ Object
Class Method Details
.exit_on_failure? ⇒ Boolean
229 230 231 |
# File 'lib/facter/framework/cli/cli.rb', line 229 def self.exit_on_failure? true end |
Instance Method Details
#arg_parser(*args) ⇒ Object
132 133 134 135 136 137 |
# File 'lib/facter/framework/cli/cli.rb', line 132 def arg_parser(*args) # ignore unknown options args.reject! { |arg| arg.start_with?('-') } Facter.values(@options, args) end |
#help(*args) ⇒ Object
170 171 172 173 174 175 176 177 |
# File 'lib/facter/framework/cli/cli.rb', line 170 def help(*args) help_string = +'' help_string << help_header(args) help_string << help_string << add_commands_to_help puts help_string end |
#list_block_groups ⇒ Object
147 148 149 150 151 152 153 154 155 |
# File 'lib/facter/framework/cli/cli.rb', line 147 def list_block_groups = @options.map { |(k, v)| [k.to_sym, v] }.to_h Facter::Options.init_from_cli() block_groups = Facter::FactGroups.new.groups.to_yaml.lines[1..-1].join block_groups.gsub!(/:\s*\n/, "\n") puts block_groups end |
#list_cache_groups ⇒ Object
159 160 161 162 163 164 165 166 167 |
# File 'lib/facter/framework/cli/cli.rb', line 159 def list_cache_groups = @options.map { |(k, v)| [k.to_sym, v] }.to_h Facter::Options.init_from_cli() cache_groups = Facter::FactGroups.new.groups.to_yaml.lines[1..-1].join cache_groups.gsub!(/:\s*\n/, "\n") puts cache_groups end |
#man(*args) ⇒ Object
111 112 113 114 115 116 117 118 119 |
# File 'lib/facter/framework/cli/cli.rb', line 111 def man(*args) require 'erb' = %w[block cache custom_facts external_facts] template = File.join(File.dirname(__FILE__), '..', '..', 'templates', 'man.erb') erb = ERB.new(File.read(template), nil, '-') erb.filename = template puts erb.result(binding) end |
#query(*args) ⇒ Object
122 123 124 125 126 127 128 129 |
# File 'lib/facter/framework/cli/cli.rb', line 122 def query(*args) Facter.puppet_facts if [:puppet] output, status = Facter.to_user_output(@options, *args) puts output status = 1 if Facter::Log.errors? exit status end |