class Facter::Resolvers::Wpar

Private Class Methods

populate_wpar_data(key_value) click to toggle source
# File lib/facter/resolvers/wpar_resolver.rb, line 25
def populate_wpar_data(key_value)
  @fact_list[:wpar_key]              = key_value[1].to_i if key_value[0] == 'WPAR Key'
  @fact_list[:wpar_configured_id]    = key_value[1].to_i if key_value[0] == 'WPAR Configured ID'
end
post_resolve(fact_name) click to toggle source
# File lib/facter/resolvers/wpar_resolver.rb, line 10
def post_resolve(fact_name)
  @fact_list.fetch(fact_name) { read_wpar(fact_name) }
end
read_wpar(fact_name) click to toggle source
# File lib/facter/resolvers/wpar_resolver.rb, line 14
def read_wpar(fact_name)
  output = Facter::Core::Execution.execute('/usr/bin/lparstat -W', logger: log)

  return if output.empty?

  output.each_line do |line|
    populate_wpar_data(line.split(':').map(&:strip))
  end
  @fact_list[fact_name]
end