Sha256: 10819c34a4a6261953dc4fb9090747c0afc3453624b4dc91b7a80f42d47d3f36
Contents?: true
Size: 385 Bytes
Versions: 36
Compression:
Stored size: 385 Bytes
Contents
# frozen_string_literal: true module Facter module Resolvers class Path < BaseResolver init_resolver class << self private def post_resolve(fact_name, _options) @fact_list.fetch(fact_name) { read_path_from_env } end def read_path_from_env @fact_list[:path] = ENV['PATH'] end end end end end
Version data entries
36 entries across 36 versions & 1 rubygems