puppetlabs/facter

View on GitHub
lib/facter/facts/linux/networking/scope6.rb

Summary

Maintainability
A
20 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Facts
  module Linux
    module Networking
      class Scope6
        FACT_NAME = 'networking.scope6'
        ALIASES = 'scope6'

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

          [Facter::ResolvedFact.new(FACT_NAME, fact_value),
           Facter::ResolvedFact.new('scope6', fact_value, :legacy)]
        end
      end
    end
  end
end