lib/facts/aix/networking/fqdn.rb in facter-4.0.8.pre vs lib/facts/aix/networking/fqdn.rb in facter-4.0.9.pre
- old
+ new
@@ -1,15 +1,17 @@
# frozen_string_literal: true
-module Facter
+module Facts
module Aix
- class NetworkingFqdn
- FACT_NAME = 'networking.fqdn'
- ALIASES = 'fqdn'
+ module Networking
+ class Fqdn
+ FACT_NAME = 'networking.fqdn'
+ ALIASES = 'fqdn'
- def call_the_resolver
- fact_value = Facter::Resolvers::Hostname.resolve(:fqdn)
- [ResolvedFact.new(FACT_NAME, fact_value), ResolvedFact.new(ALIASES, fact_value, :legacy)]
+ def call_the_resolver
+ fact_value = Facter::Resolvers::Hostname.resolve(:fqdn)
+ [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)]
+ end
end
end
end
end