Sha256: 4bdecf48627bfb5f53a8a30b68843f8e9d444f9f307c6d449f17f7b5ccc7fe5a
Contents?: true
Size: 554 Bytes
Versions: 39
Compression:
Stored size: 554 Bytes
Contents
# frozen_string_literal: true module Facts module Macosx module Memory module Swap class TotalBytes FACT_NAME = 'memory.swap.total_bytes' ALIASES = 'swapsize_mb' def call_the_resolver fact_value = Facter::Resolvers::Macosx::SwapMemory.resolve(:total_bytes) [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, Facter::Util::Facts::UnitConverter.bytes_to_mb(fact_value), :legacy)] end end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems