Sha256: 3df982113af74407924d4c472d90e0f0f441ac513373fe19d00cd44f550e2333

Contents?: true

Size: 567 Bytes

Versions: 24

Compression:

Stored size: 567 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Linux
    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::FactsUtils::UnitConverter.bytes_to_human_readable(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

24 entries across 24 versions & 1 rubygems

Version Path
facter-4.0.24 lib/facts/linux/memory/swap/total.rb
facter-4.0.23 lib/facts/linux/memory/swap/total.rb
facter-4.0.22 lib/facts/linux/memory/swap/total.rb
facter-4.0.21 lib/facts/linux/memory/swap/total.rb