]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/munin/recipes/default.rb
Avoid exception when an interface has no flags
[chef.git] / 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/