Sha256: 62b5c4581d648189accdcc71b2f8236a4b1df16013fbcff722af1a6c71884b85
Contents?: true
Size: 1.18 KB
Versions: 22
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true module Facter module Resolvers class System32 < BaseResolver @log = Facter::Log.new(self) init_resolver class << self private def post_resolve(fact_name, _options) @fact_list.fetch(fact_name) { retrieve_windows_binaries_path } end def retrieve_windows_binaries_path require 'facter/resolvers/windows/ffi/system32_ffi' windows_path = ENV['SystemRoot'] if !windows_path || windows_path.empty? @log.debug 'Unable to find correct value for SystemRoot enviroment variable' return nil end bool_ptr = FFI::MemoryPointer.new(:win32_bool, 1) if System32FFI::IsWow64Process(System32FFI::GetCurrentProcess(), bool_ptr) == FFI::WIN32FALSE @log.debug 'IsWow64Process failed' return end @fact_list[:system32] = construct_path(bool_ptr, windows_path) end def construct_path(bool_ptr, windows) if bool_ptr.read_win32_bool "#{windows}\\sysnative" else "#{windows}\\system32" end end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems