Sha256: d39a99f3e68a916f3ae0d3dd41ade35d9f208ad1a44b24ab7edf63aeaeec7994
Contents?: true
Size: 838 Bytes
Versions: 36
Compression:
Stored size: 838 Bytes
Contents
# frozen_string_literal: true module Facter module Resolvers class Lpar < BaseResolver init_resolver class << self private def post_resolve(fact_name, _options) @fact_list.fetch(fact_name) { read_lpar(fact_name) } end 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 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 end end end end
Version data entries
36 entries across 36 versions & 1 rubygems