Sha256: baa380a7254e2b7c3f44f0f7606ea9df1ccfc89549895905a01f5555d29f378f

Contents?: true

Size: 559 Bytes

Versions: 39

Compression:

Stored size: 559 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Linux
    module Memory
      module System
        class AvailableBytes
          FACT_NAME = 'memory.system.available_bytes'
          ALIASES = 'memoryfree_mb'

          def call_the_resolver
            fact_value = Facter::Resolvers::Linux::Memory.resolve(:memfree)

            [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

Version Path
facter-4.10.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.9.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.8.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.7.1 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.7.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.6.1 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.6.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.5.2 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.5.1 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.5.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.4.3 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.4.2 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.4.1 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.4.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.3.1 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.3.0 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.2.14 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.2.13 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.2.12 lib/facter/facts/linux/memory/system/available_bytes.rb
facter-4.2.11 lib/facter/facts/linux/memory/system/available_bytes.rb