Class: Facts::Linux::MtuInterfaces
- Inherits:
 - 
      Object
      
        
- Object
 - Facts::Linux::MtuInterfaces
 
 
- Defined in:
 - lib/facter/facts/linux/mtu_interfaces.rb
 
Constant Summary collapse
- FACT_NAME =
 'mtu_.*'- TYPE =
 :legacy
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
      9 10 11 12 13 14 15 16 17  | 
    
      # File 'lib/facter/facts/linux/mtu_interfaces.rb', line 9 def call_the_resolver arr = [] interfaces = Facter::Resolvers::Linux::Networking.resolve(:interfaces) interfaces&.each do |interface_name, info| arr << Facter::ResolvedFact.new("mtu_#{interface_name}", info[:mtu], :legacy) if info[:mtu] end arr end  |