Class: Facts::Linux::Memory::System::TotalBytes
- Inherits:
-
Object
- Object
- Facts::Linux::Memory::System::TotalBytes
- Defined in:
- lib/facter/facts/linux/memory/system/total_bytes.rb
Constant Summary collapse
- FACT_NAME =
'memory.system.total_bytes'
- ALIASES =
'memorysize_mb'
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
11 12 13 14 15 |
# File 'lib/facter/facts/linux/memory/system/total_bytes.rb', line 11 def call_the_resolver fact_value = Facter::Resolvers::Linux::Memory.resolve(:total) [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, Facter::Util::Facts::UnitConverter.bytes_to_mb(fact_value), :legacy)] end |