Current Path : /opt/puppetlabs/puppet/lib/ruby/gems/2.5.0/gems/facter-ng-4.2.5/lib/facter/facts/linux/ |
Current File : //opt/puppetlabs/puppet/lib/ruby/gems/2.5.0/gems/facter-ng-4.2.5/lib/facter/facts/linux/path.rb |
# frozen_string_literal: true module Facts module Linux class Path FACT_NAME = 'path' def call_the_resolver fact_value = Facter::Resolvers::Path.resolve(:path) Facter::ResolvedFact.new(FACT_NAME, fact_value) end end end end