X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d61efd8dc118a536ab1fb6700ca734877849ba65..0d1a4feb878060e464fb745c64236d690d75f4d6:/cookbooks/hardware/recipes/default.rb diff --git a/cookbooks/hardware/recipes/default.rb b/cookbooks/hardware/recipes/default.rb index 865578036..551dd5b38 100644 --- a/cookbooks/hardware/recipes/default.rb +++ b/cookbooks/hardware/recipes/default.rb @@ -306,6 +306,20 @@ if status_packages["megaclisas-status"] 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 +end + if status_packages["sas2ircu-status"] Dir.glob("/sys/class/scsi_host/host*") do |host| driver = File.new("#{host}/proc_name").read.chomp @@ -353,6 +367,22 @@ if tools_packages.include?("areca") end end +disks.each do |disk| + if disk[:device] =~ /^cciss\/(.*)$/ + id = File.read("/sys/bus/cciss/devices/#{Regexp.last_match[1]}/unique_id").chomp + + disk[:munin] = "cciss-3#{id.downcase}" + else + disk[:munin] = disk[:device] + end + + if disk[:id] + disk[:munin] = "#{disk[:munin]}-#{disk[:id].to_s.tr('/', ':')}" + end + + disk[:hddtemp] = disk[:munin].tr("-:", "_") +end + if disks.count > 0 package "smartmontools" @@ -375,11 +405,38 @@ if disks.count > 0 service "smartmontools" do action [:enable, :start] + supports :status => true, :restart => true, :reload => true + end + + disks.each do |disk| + munin_plugin "smart_#{disk[:munin]}" do + target "smart_" + conf "munin.smart.erb" + conf_variables :disk => disk + end + end + + munin_plugin "hddtemp_smartctl" do + conf "munin.hddtemp.erb" + conf_variables :disks => disks end else service "smartmontools" do action [:stop, :disable] end + + munin_plugin "hddtemp_smartctl" do + action :delete + 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")