+package "haveged"
+service "haveged" do
+ action [:enable, :start]
+end
+
+if node[:kernel][:modules].include?("ipmi_si")
+ package "ipmitool"
+end
+
+if node[:lsb][:release].to_f >= 12.10
+ package "irqbalance"
+
+ template "/etc/default/irqbalance" do
+ source "irqbalance.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ end
+
+ service "irqbalance" do
+ action [:start, :enable]
+ supports :status => false, :restart => true, :reload => false
+ subscribes :restart, "template[/etc/default/irqbalance]"
+ end
+end
+
+tools_packages = []
+status_packages = {}
+
+node[:kernel][:modules].each_key do |modname|
+ case modname
+ when "cciss"
+ tools_packages << "hpacucli"
+ status_packages["cciss-vol-status"] ||= []
+ when "hpsa"
+ tools_packages << "hpacucli"
+ status_packages["cciss-vol-status"] ||= []
+ when "mptsas"
+ tools_packages << "lsiutil"
+ # status_packages["mpt-status"] ||= []
+ when "mpt2sas", "mpt3sas"
+ tools_packages << "sas2ircu"
+ status_packages["sas2ircu-status"] ||= []
+ when "megaraid_mm"
+ tools_packages << "megactl"
+ status_packages["megaraid-status"] ||= []
+ when "megaraid_sas"
+ tools_packages << "megacli"
+ status_packages["megaclisas-status"] ||= []
+ when "aacraid"
+ tools_packages << "arcconf"
+ status_packages["aacraid-status"] ||= []
+ when "arcmsr"
+ tools_packages << "areca"
+ end
+end
+
+node[:block_device].each do |name, attributes|
+ next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
+
+ if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
+ status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
+ else
+ Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
+ status_packages["cciss-vol-status"] |= [File.basename(sg)]
+ end
+ end
+end
+
+%w(hpacucli lsiutil sas2ircu megactl megacli arcconf).each do |tools_package|
+ if tools_packages.include?(tools_package)
+ package tools_package
+ else
+ package tools_package do
+ action :purge
+ end
+ end
+end
+
+if tools_packages.include?("areca")
+ include_recipe "git"
+
+ git "/opt/areca" do
+ action :sync
+ repository "git://chef.openstreetmap.org/areca.git"
+ user "root"
+ group "root"
+ end
+else
+ directory "/opt/areca" do
+ action :delete
+ recursive true
+ end
+end
+
+["cciss-vol-status", "mpt-status", "sas2ircu-status", "megaraid-status", "megaclisas-status", "aacraid-status"].each do |status_package|
+ if status_packages.include?(status_package)
+ package status_package
+
+ template "/etc/default/#{status_package}d" do
+ source "raid.default.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ variables :devices => status_packages[status_package]
+ end
+
+ service "#{status_package}d" do
+ action [:start, :enable]
+ supports :status => false, :restart => true, :reload => false
+ subscribes :restart, "template[/etc/default/#{status_package}d]"
+ end
+ else
+ package status_package do
+ action :purge
+ end
+
+ file "/etc/default/#{status_package}d" do
+ action :delete
+ end
+ end
+end
+
+disks = []
+
+node[:block_device].each do |name, attributes|
+ disks << { :device => name } if attributes[:vendor] == "ATA"
+end
+
+if status_packages["cciss-vol-status"] && File.exist?("/usr/sbin/cciss_vol_status")
+ status_packages["cciss-vol-status"].each do |device|
+ IO.popen(["cciss_vol_status", "-V", "/dev/#{device}"]).each do |line|
+ disks << { :device => device, :driver => "cciss", :id => Regexp.last_match[1].to_i - 1 } if line =~ / bay ([0-9]+) +HP /
+ end
+ end
+end
+
+if status_packages["megaclisas-status"]
+ controller = 0
+
+ Dir.glob("/sys/class/scsi_host/host*") do |host|
+ driver = File.new("#{host}/proc_name").read.chomp
+
+ next unless driver == "megaraid_sas"
+
+ bus = host.sub("/sys/class/scsi_host/host", "")
+ device = File.basename(Dir.glob("/sys/bus/scsi/devices/#{bus}:*/scsi_generic/*").first)
+
+ IO.popen(["megacli", "-PDList", "-a#{controller}", "-NoLog"]).each do |line|
+ disks << { :device => device, :driver => "megaraid", :id => Regexp.last_match[1] } if line =~ /^Device Id: ([0-9]+)$/
+
+ disks.pop if line =~ /^Firmware state: Hotspare, Spun down$/
+ end
+
+ controller += 1
+ end
+end
+
+if tools_packages.include?("lsiutil")
+ Dir.glob("/sys/class/scsi_host/host*") do |host|
+ driver = File.new("#{host}/proc_name").read.chomp
+
+ next unless driver == "mptsas"
+
+ bus = host.sub("/sys/class/scsi_host/host", "")
+
+ Dir.glob("/sys/bus/scsi/devices/#{bus}:0:*/scsi_generic/*").each do |sg|
+ disks << { :device => File.basename(sg) }
+ end
+ end