Sha256: 7064b28bfb2221acbb974221ed30c1698c96aed1c6109a7921e2e7c9b62f365e
Contents?: true
Size: 548 Bytes
Versions: 2
Compression:
Stored size: 548 Bytes
Contents
# frozen_string_literal: true module Facts module Debian module Memory module System class TotalBytes FACT_NAME = 'memory.system.total_bytes' ALIASES = 'memorysize_mb' def call_the_resolver fact_value = Facter::Resolvers::Linux::Memory.resolve(:total) [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, Facter::FactsUtils::UnitConverter.bytes_to_mb(fact_value), :legacy)] end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
facter-4.0.20 | lib/facts/debian/memory/system/total_bytes.rb |
facter-4.0.19 | lib/facts/debian/memory/system/total_bytes.rb |