]> git.openstreetmap.org Git - chef.git/commitdiff
Avoid exception when an interface has no flags
authorTom Hughes <tom@compton.nu>
Fri, 15 Mar 2019 16:26:30 +0000 (16:26 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 15 Mar 2019 16:26:30 +0000 (16:26 +0000)
cookbooks/munin/recipes/default.rb

index df7bfbe08df52e67aacd622f97f791c4e3f43616..3418d3e83b1843255ca6f44eed9d6096d099840f 100644 (file)
@@ -160,7 +160,7 @@ munin_plugin "http_loadtime" do
 end
 
 node[:network][:interfaces].each do |ifname, ifattr|
-  if ifattr[:flags].include?("UP") && !ifattr[:flags].include?("LOOPBACK")
+  if ifattr[:flags]&.include?("UP") && !ifattr[:flags].include?("LOOPBACK")
     if node[:hardware] &&
        node[:hardware][:network] &&
        node[:hardware][:network][ifname][:device] =~ /^virtio/