+
+disks = node[:hardware][:disk][:disks].map do |disk|
+ if disk[:smart_device]
+ controller = node[:hardware][:disk][:controllers][disk[:controller]]
+ device = controller[:device].sub("/dev/", "")
+ smart = disk[:smart_device]
+
+ if device.start_with?("cciss/") && smart =~ /^cciss,(\d+)$/
+ array = node[:hardware][:disk][:arrays][disk[:arrays].first]
+ munin = "cciss-3#{array[:wwn]}-#{Regexp.last_match(1)}"
+ elsif smart =~ /^.*,(\d+)$/
+ munin = "#{device}-#{Regexp.last_match(1)}"
+ elsif smart =~ %r{^.*,(\d+)/(\d+)$}
+ munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}"
+ end
+ else
+ device = disk[:device].sub("/dev/", "")
+ munin = device
+ end
+
+ Hash[
+ :device => device,
+ :smart => smart,
+ :munin => munin,
+ :hddtemp => munin.tr("-:", "_")
+ ]
+end
+
+if disks.count > 0
+ package "smartmontools"
+
+ template "/usr/local/bin/smartd-mailer" do
+ source "smartd-mailer.erb"
+ owner "root"
+ group "root"
+ mode 0755
+ end
+
+ template "/etc/smartd.conf" do
+ source "smartd.conf.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ variables :disks => disks
+ notifies :reload, "service[smartmontools]"
+ end
+
+ template "/etc/default/smartmontools" do
+ source "smartmontools.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ notifies :restart, "service[smartmontools]"
+ end
+
+ service "smartmontools" do
+ action [:enable, :start]
+ supports :status => true, :restart => true, :reload => true
+ end
+
+ # Don't try and do munin monitoring of disks behind
+ # an Areca controller as they only allow one thing to
+ # talk to the controller at a time and smartd will
+ # throw errors if it clashes with munin
+ disks = disks.reject { |disk| disk[:smart] && disk[:smart].start_with?("areca,") }
+
+ disks.each do |disk|
+ munin_plugin "smart_#{disk[:munin]}" do
+ target "smart_"
+ conf "munin.smart.erb"
+ conf_variables :disk => disk
+ end
+ end
+else
+ service "smartmontools" do
+ action [:stop, :disable]
+ end
+end
+
+if disks.count > 0
+ munin_plugin "hddtemp_smartctl" do
+ conf "munin.hddtemp.erb"
+ conf_variables :disks => disks
+ end
+else
+ munin_plugin "hddtemp_smartctl" do
+ action :delete
+ conf "munin.hddtemp.erb"
+ end
+end
+
+plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
+ disks.map { |d| "smart_#{d[:munin]}" }
+
+plugins.each do |plugin|
+ munin_plugin plugin do
+ action :delete
+ end
+end
+
+if File.exist?("/etc/mdadm/mdadm.conf")
+ mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
+ line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
+
+ line
+ end
+
+ file "/etc/mdadm/mdadm.conf" do
+ owner "root"
+ group "root"
+ mode 0644
+ content mdadm_conf
+ end
+
+ service "mdadm" do
+ action :nothing
+ subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
+ end
+end
+
+template "/etc/modules" do
+ source "modules.erb"
+ owner "root"
+ group "root"
+ mode 0644
+end
+
+if node[:lsb][:release].to_f <= 12.10
+ service "module-init-tools" do
+ provider Chef::Provider::Service::Upstart
+ action :nothing
+ subscribes :start, "template[/etc/modules]"
+ end
+else
+ service "kmod" do
+ provider Chef::Provider::Service::Upstart
+ action :nothing
+ subscribes :start, "template[/etc/modules]"
+ end
+end
+
+if node[:hardware][:watchdog]
+ package "watchdog"
+
+ template "/etc/default/watchdog" do
+ source "watchdog.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ variables :module => node[:hardware][:watchdog]
+ end
+
+ service "watchdog" do
+ action [:enable, :start]
+ end
+end
+
+unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
+ package "lm-sensors"
+
+ Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
+ cpu = File.basename(coretemp).sub("coretemp.", "").to_i
+ chip = format("coretemp-isa-%04d", cpu)
+
+ if File.exist?("#{coretemp}/name")
+ temps = Dir.glob("#{coretemp}/temp*_input").map do |temp|
+ File.basename(temp).sub("temp", "").sub("_input", "").to_i
+ end.sort
+ else
+ temps = Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
+ File.basename(temp).sub("temp", "").sub("_input", "").to_i
+ end.sort
+ end
+
+ if temps.first == 1
+ node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
+ temps.shift
+ end
+
+ temps.each_with_index do |temp, index|
+ node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
+ end
+ end
+
+ execute "/etc/sensors.d/chef.conf" do
+ action :nothing
+ command "/usr/bin/sensors -s"
+ user "root"
+ group "root"
+ end
+
+ template "/etc/sensors.d/chef.conf" do
+ source "sensors.conf.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ notifies :run, "execute[/etc/sensors.d/chef.conf]"
+ end
+end