Sha256: 6a2a145b8909292d4ea6e24b801f904d24bcc292504448da8f8c90e654046ee0

Contents?: true

Size: 458 Bytes

Versions: 1

Compression:

Stored size: 458 Bytes

Contents

# frozen_string_literal: true

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

          def call_the_resolver
            fact_value = Facter::Resolvers::Linux::Memory.resolve(:swap_total)
            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/debian/memory/swap/total.rb