Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/facter/facts/macosx/interfaces.rb
# frozen_string_literal: true

module Facts
  module Macosx
    class Interfaces
      FACT_NAME = 'interfaces'
      TYPE = :legacy

      def call_the_resolver
        fact_value = Facter::Resolvers::Networking.resolve(:interfaces)

        Facter::ResolvedFact.new(FACT_NAME, fact_value ? fact_value.keys.sort.join(',') : nil, :legacy)
      end
    end
  end
end
Page not found – Hello World !