X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b20599b6503be65674c3e420be6cca91b507ac0a..ea0715b4be41a1d1600bba7a1f5d0b988708579f:/cookbooks/munin/recipes/default.rb diff --git a/cookbooks/munin/recipes/default.rb b/cookbooks/munin/recipes/default.rb index e48c7806d..28c05006b 100644 --- a/cookbooks/munin/recipes/default.rb +++ b/cookbooks/munin/recipes/default.rb @@ -25,7 +25,7 @@ service "munin-node" do if node[:lsb][:release].to_f >= 14.04 provider Chef::Provider::Service::Upstart end - action [ :enable, :start ] + action [:enable, :start] supports :status => true, :restart => true, :reload => true end @@ -33,16 +33,14 @@ servers = search(:node, "recipes:munin\\:\\:server") servers.each do |server| server.interfaces(:role => :external) do |interface| - if interface[:zone] - firewall_rule "accept-munin-#{server}" do - action :accept - family interface[:family] - source "#{interface[:zone]}:#{interface[:address]}" - dest "fw" - proto "tcp:syn" - dest_ports "munin" - source_ports "1024:" - end + firewall_rule "accept-munin-#{server}" do + action :accept + family interface[:family] + source "#{interface[:zone]}:#{interface[:address]}" + dest "fw" + proto "tcp:syn" + dest_ports "munin" + source_ports "1024:" end end end @@ -127,8 +125,8 @@ else end end -disks = node[:block_device].select do |_,attributes| - [ "ATA", "FUJITSU", "SEAGATE", "DELL", "COMPAQ", "IBM-ESXS" ].include?(attributes[:vendor]) +disks = node[:block_device].select do |_, attributes| + ["ATA", "FUJITSU", "SEAGATE", "DELL", "COMPAQ", "IBM-ESXS"].include?(attributes[:vendor]) end if disks.empty? @@ -160,7 +158,7 @@ else end end -munin_plugin "hpasmcli_temp" do +munin_plugin "hpasmcli_temp" do # ~FC005 action :delete end @@ -172,8 +170,8 @@ munin_plugin "http_loadtime" do action :delete end -node[:network][:interfaces].each do |ifname,ifattr| - if ifattr[:encapsulation] == "Ethernet" and ifattr[:state] == "up" +node[:network][:interfaces].each do |ifname, ifattr| + if ifattr[:encapsulation] == "Ethernet" && ifattr[:state] == "up" munin_plugin "if_err_#{ifname}" do target "if_err_" end @@ -319,7 +317,7 @@ else end end -node[:block_device].each do |name,attributes| +node[:block_device].each do |name, attributes| if attributes[:vendor] == "ATA" munin_plugin "smart_#{name}" do target "smart_"