class Facter::Resolvers::Lpar
Private Class Methods
populate_lpar_data(key_value)
click to toggle source
# File lib/facter/resolvers/lpar_resolver.rb, line 22 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)
click to toggle source
# File lib/facter/resolvers/lpar_resolver.rb, line 10 def post_resolve(fact_name) @fact_list.fetch(fact_name) { read_lpar(fact_name) } end
read_lpar(fact_name)
click to toggle source
# File lib/facter/resolvers/lpar_resolver.rb, line 14 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