Class: Facts::Solaris::Memory::System::Total
- Inherits:
 - 
      Object
      
        
- Object
 - Facts::Solaris::Memory::System::Total
 
 
- Defined in:
 - lib/facter/facts/solaris/memory/system/total.rb
 
Constant Summary collapse
- FACT_NAME =
 'memory.system.total'- ALIASES =
 'memorysize'
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
      11 12 13 14 15 16 17  | 
    
      # File 'lib/facter/facts/solaris/memory/system/total.rb', line 11 def call_the_resolver fact_value = Facter::Resolvers::Solaris::Memory.resolve(:system) if fact_value fact_value = Facter::Util::Facts::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  |