]> git.openstreetmap.org Git - chef.git/commitdiff
Fix rubocop warnings
authorTom Hughes <tom@compton.nu>
Mon, 31 Oct 2016 21:30:44 +0000 (21:30 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 31 Oct 2016 21:30:44 +0000 (21:30 +0000)
cookbooks/munin/files/default/plugins/api_waits_
cookbooks/rsyncd/recipes/default.rb

index 49216861ab63bd9eb26f97bf8ffbe5b2be4bb00e..6be9fc6f553c49ca86e275c7b6de5d0000d69818 100755 (executable)
@@ -65,7 +65,7 @@ else
 
   CALL_TYPES.keys.each do |type|
     count = counts[type] || [0]
-    avg = count.inject(0) { |a, e| a + e } / (1.0 * count.length)
+    avg = count.inject(0) { |acc, elem| acc + elem } / (1.0 * count.length)
     puts "#{type}.value #{avg}"
   end
 end
index deaf9a0d26132cff92f4bbcfee8355e359d046da..b14e2f405d326ed2d2a8dd67b8f85520a9c49a59 100644 (file)
@@ -25,15 +25,19 @@ hosts_deny = {}
 node[:rsyncd][:modules].each do |name, details|
   hosts_allow[name] = details[:hosts_allow] || []
 
-  hosts_allow[name] |= search(:node, details[:nodes_allow]).collect do |n|
-    n.ipaddresses(:role => :external)
-  end.flatten if details[:nodes_allow]
+  if details[:nodes_allow]
+    hosts_allow[name] |= search(:node, details[:nodes_allow]).collect do |n|
+      n.ipaddresses(:role => :external)
+    end.flatten
+  end
 
   hosts_deny[name] = details[:hosts_deny] || []
 
+  next unless details[:nodes_deny]
+
   hosts_deny[name] |= search(:node, details[:nodes_deny]).collect do |n|
     n.ipaddresses(:role => :external)
-  end.flatten if details[:nodes_deny]
+  end.flatten
 end
 
 package "rsync"