Sha256: 554c354fec429156598859bc439bea55c91fab5eabed61e2909ac5e74dd1b204
Contents?: true
Size: 547 Bytes
Versions: 2
Compression:
Stored size: 547 Bytes
Contents
# frozen_string_literal: true module Facts module Debian module Memory module Swap class TotalBytes FACT_NAME = 'memory.swap.total_bytes' ALIASES = 'swapsize_mb' def call_the_resolver fact_value = Facter::Resolvers::Linux::Memory.resolve(:swap_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/swap/total_bytes.rb |
facter-4.0.19 | lib/facts/debian/memory/swap/total_bytes.rb |