Sha256: 9f3232cb7826f9bc3b158b7894657e6018be8ffedd2a25d06f6df70447c079ef

Contents?: true

Size: 543 Bytes

Versions: 9

Compression:

Stored size: 543 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Debian
    module Memory
      module System
        class TotalBytes
          FACT_NAME = 'memory.system.total_bytes'
          ALIASES = 'memorysize_mb'

          def call_the_resolver
            fact_value = Facter::Resolvers::Linux::Memory.resolve(:total)
            [Facter::ResolvedFact.new(FACT_NAME, fact_value),
             Facter::ResolvedFact.new(ALIASES, Facter::FactsUtils::BytesConverter.to_mb(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/system/total_bytes.rb
facter-4.0.17 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.16 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.15 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.14 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.13 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.12 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.11 lib/facts/debian/memory/system/total_bytes.rb
facter-4.0.10.pre lib/facts/debian/memory/system/total_bytes.rb