Sha256: 7ea359607ced093b2143fcd60cb925f1a722514cdac8f191c19b8f0ed811ba14

Contents?: true

Size: 522 Bytes

Versions: 44

Compression:

Stored size: 522 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Windows
    module Hypervisors
      class Hyperv
        FACT_NAME = 'hypervisors.hyperv'

        def call_the_resolver
          fact_value = {} if hyperv?

          Facter::ResolvedFact.new(FACT_NAME, fact_value)
        end

        private

        def hyperv?
          Facter::Resolvers::Virtualization.resolve(:virtual) == 'hyperv' ||
            Facter::Resolvers::DMIBios.resolve(:manufacturer).include?('Microsoft')
        end
      end
    end
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
facter-4.0.33 lib/facter/facts/windows/hypervisors/hyperv.rb
facter-4.0.32 lib/facter/facts/windows/hypervisors/hyperv.rb
facter-4.0.31 lib/facter/facts/windows/hypervisors/hyperv.rb
facter-4.0.30 lib/facter/facts/windows/hypervisors/hyperv.rb
facter-4.0.29 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.28 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.26 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.25 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.24 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.23 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.22 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.21 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.20 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.19 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.18 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.17 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.16 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.15 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.14 lib/facts/windows/hypervisors/hyperv.rb
facter-4.0.13 lib/facts/windows/hypervisors/hyperv.rb