class Facts::Solaris::Memory::System::TotalBytes

Constants

ALIASES
FACT_NAME

Public Instance Methods

call_the_resolver() click to toggle source
# File lib/facter/facts/solaris/memory/system/total_bytes.rb, line 11
def call_the_resolver
  fact_value = Facter::Resolvers::Solaris::Memory.resolve(:system)
  fact_value = fact_value[:total_bytes] if fact_value

  [Facter::ResolvedFact.new(FACT_NAME, fact_value),
   Facter::ResolvedFact.new(ALIASES, Facter::Util::Facts::UnitConverter.bytes_to_mb(fact_value), :legacy)]
end