Sha256: 8b950d4ed2e3d7816e853034a690ed7efd2309fc79ae655501a29e525ce3d025

Contents?: true

Size: 465 Bytes

Versions: 1

Compression:

Stored size: 465 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Macosx
    module Memory
      module Swap
        class Total
          FACT_NAME = 'memory.swap.total'

          def call_the_resolver
            fact_value = Facter::Resolvers::Macosx::SwapMemory.resolve(:total_bytes)
            fact_value = Facter::BytesToHumanReadable.convert(fact_value)

            Facter::ResolvedFact.new(FACT_NAME, fact_value)
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facter-4.0.9.pre lib/facts/macosx/memory/swap/total.rb