Sha256: 235a049b651d852bde2aebb5358bd0b58756cab8424aad9af6c6eb07ea57d66c

Contents?: true

Size: 902 Bytes

Versions: 1

Compression:

Stored size: 902 Bytes

Contents

# frozen_string_literal: true

module Facter
  module Resolvers
    class WinOsDescription < BaseResolver
      @log = Facter::Log.new(self)

      init_resolver

      class << self
        private

        def post_resolve(fact_name)
          @fact_list.fetch(fact_name) { read_from_ole(fact_name) }
        end

        def read_from_ole(fact_name)
          win = Win32Ole.new
          op_sys = win.return_first('SELECT ProductType,OtherTypeDescription FROM Win32_OperatingSystem')
          unless op_sys
            @log.debug 'WMI query returned no results for Win32_OperatingSystem'\
                       'with values ProductType and OtherTypeDescription.'
            return
          end
          @fact_list[:consumerrel] = (op_sys.ProductType == 1)
          @fact_list[:description] = op_sys.OtherTypeDescription
          @fact_list[fact_name]
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facter-4.0.46 lib/facter/resolvers/windows/win_os_description_resolver.rb