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

module Facts
  module Solaris
    class Ipaddress6Interfaces
      FACT_NAME = 'ipaddress6_.*'
      TYPE = :legacy

      def call_the_resolver
        arr = []
        interfaces = Facter::Resolvers::Solaris::Networking.resolve(:interfaces)
        interfaces&.each do |interface_name, info|
          arr << Facter::ResolvedFact.new("ipaddress6_#{interface_name}", info[:ip6], :legacy) if info[:ip6]
        end

        arr
      end
    end
  end
end
Page not found – Hello World !