Sha256: 3e8b6f08dc4b920da173ddb40efdd10ba89121ea047069dda47188dd9c3ef03c

Contents?: true

Size: 547 Bytes

Versions: 9

Compression:

Stored size: 547 Bytes

Contents

# frozen_string_literal: true

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

          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), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)]
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
facter-4.0.18 lib/facts/debian/memory/swap/total.rb
facter-4.0.17 lib/facts/debian/memory/swap/total.rb
facter-4.0.16 lib/facts/debian/memory/swap/total.rb
facter-4.0.15 lib/facts/debian/memory/swap/total.rb
facter-4.0.14 lib/facts/debian/memory/swap/total.rb
facter-4.0.13 lib/facts/debian/memory/swap/total.rb
facter-4.0.12 lib/facts/debian/memory/swap/total.rb
facter-4.0.11 lib/facts/debian/memory/swap/total.rb
facter-4.0.10.pre lib/facts/debian/memory/swap/total.rb