diff options
Diffstat (limited to 'lib/ohai/plugins/linux/network.rb')
-rw-r--r-- | lib/ohai/plugins/linux/network.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ohai/plugins/linux/network.rb b/lib/ohai/plugins/linux/network.rb index 713b9c16..80168e39 100644 --- a/lib/ohai/plugins/linux/network.rb +++ b/lib/ohai/plugins/linux/network.rb @@ -141,13 +141,13 @@ Ohai.plugin(:Network) do # using a temporary var to hold routes and their interface name def parse_routes(family, iface) - iface.collect do |i, iv| + iface.filter_map do |i, iv| next unless iv[:routes] - iv[:routes].collect do |r| + iv[:routes].filter_map do |r| r.merge(dev: i) if r[:family] == family[:name] - end.compact # @todo: when we drop ruby 2.6 this should be a filter_map - end.compact.flatten # @todo: when we drop ruby 2.6 this should be a filter_map + end + end.flatten end # determine layer 1 details for the interface using ethtool |