class Facter::Resolvers::Lpar
Private Class Methods
populate_lpar_data(key_value)
click to toggle source
# File lib/facter/resolvers/lpar.rb, line 23 def populate_lpar_data(key_value) @fact_list[:lpar_partition_name] = key_value[1] if key_value[0] == 'Partition Name' @fact_list[:lpar_partition_number] = key_value[1].to_i if key_value[0] == 'Partition Number' end
post_resolve(fact_name, _options)
click to toggle source
# File lib/facter/resolvers/lpar.rb, line 11 def post_resolve(fact_name, _options) @fact_list.fetch(fact_name) { read_lpar(fact_name) } end
read_lpar(fact_name)
click to toggle source
# File lib/facter/resolvers/lpar.rb, line 15 def read_lpar(fact_name) output = Facter::Core::Execution.execute('/usr/bin/lparstat -i', logger: log) output.each_line do |line| populate_lpar_data(line.split(':').map(&:strip)) end @fact_list[fact_name] end