Sha256: 914fdd4e685e820e63a6b90e4cbf57acdf1d0fdd5d0249c4d42fa1dc0830f126

Contents?: true

Size: 477 Bytes

Versions: 11

Compression:

Stored size: 477 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Debian
    module Dmi
      module Product
        class Name
          FACT_NAME = 'dmi.product.name'
          ALIASES = 'productname'

          def call_the_resolver
            fact_value = Facter::Resolvers::Linux::DmiBios.resolve(:product_name)
            [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)]
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
facter-4.0.20 lib/facts/debian/dmi/product/name.rb
facter-4.0.19 lib/facts/debian/dmi/product/name.rb
facter-4.0.18 lib/facts/debian/dmi/product/name.rb
facter-4.0.17 lib/facts/debian/dmi/product/name.rb
facter-4.0.16 lib/facts/debian/dmi/product/name.rb
facter-4.0.15 lib/facts/debian/dmi/product/name.rb
facter-4.0.14 lib/facts/debian/dmi/product/name.rb
facter-4.0.13 lib/facts/debian/dmi/product/name.rb
facter-4.0.12 lib/facts/debian/dmi/product/name.rb
facter-4.0.11 lib/facts/debian/dmi/product/name.rb
facter-4.0.10.pre lib/facts/debian/dmi/product/name.rb