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