class Facts::Aix::Memory::System::Total

Constants

ALIASES
FACT_NAME

Public Instance Methods

call_the_resolver() click to toggle source
# File lib/facter/facts/aix/memory/system/total.rb, line 10
def call_the_resolver
  fact_value = Facter::Resolvers::Aix::Memory.resolve(:system)
  if fact_value
    fact_value = Facter::FactsUtils::UnitConverter.bytes_to_human_readable(fact_value[:total_bytes])
  end
  [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)]
end