X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/a758d8df5ed787e688b6e6185ba605e448e5943d..29b8151b8011f934785f3434e3826eee78e61943:/cookbooks/hardware/templates/default/ohai.rb.erb diff --git a/cookbooks/hardware/templates/default/ohai.rb.erb b/cookbooks/hardware/templates/default/ohai.rb.erb index 97a8823c2..a2eb0ef96 100644 --- a/cookbooks/hardware/templates/default/ohai.rb.erb +++ b/cookbooks/hardware/templates/default/ohai.rb.erb @@ -331,6 +331,7 @@ Ohai.plugin(:Hardware) do when "Hardware Revision" then controller[:hardware_version] = Regexp.last_match(2) when "Firmware Version" then controller[:firmware_version] = Regexp.last_match(2) when "PCI Address (Domain:Bus:Device.Function)" then controller[:pci_slot] = Regexp.last_match(2) + when "Battery/Capacitor Status" then controller[:battery_status] = Regexp.last_match(2).split.first.downcase end elsif controller && line =~ /^ Logical Drive: (\d+)$/ array = { @@ -403,6 +404,10 @@ Ohai.plugin(:Hardware) do end devices[:disks].each do |disk| + controller = disk[:controller] + + next unless devices[:controllers][controller][:type] == "hp" + disk[:smart_device] = "cciss,#{disks.find_index(disk[:location])}" if disk[:status] == "Failed" @@ -413,7 +418,7 @@ Ohai.plugin(:Hardware) do disk[:status] = "online" elsif disk[:status] == "OK" && disk[:drive_type] == "Spare Drive" disk[:status] = "hotspare" - elsif disk[:status] == "OK" && disk[:drive_type] == "Unassigned Drive" + elsif disk[:drive_type] == "Unassigned Drive" disk[:status] = "unconfigured" else disk[:status] = "unknown" @@ -426,6 +431,7 @@ Ohai.plugin(:Hardware) do def find_megaraid_disks(devices) controllers = [] arrays = [] + disks = [] controller = nil array = nil @@ -496,8 +502,11 @@ Ohai.plugin(:Hardware) do devices[:disks] << disk controller[:disks] << disk[:id] array[:disks] << disk[:id] - elsif disk && line =~ /^Firmware state:\s+(.*\S),\s*(.*\S)\s*$/ - case Regexp.last_match(1) + + disks << disk + elsif disk && line =~ /^Firmware state:\s+(\S.*)$/ + status, state = Regexp.last_match(1).split(/,\s*/) + case status when "Unconfigured(good)" then disk[:status] = "unconfigured" when "Unconfigured(bad)" then disk[:status] = "unconfigured" when "Hotspare" then disk[:status] = "hotspare" @@ -508,14 +517,14 @@ Ohai.plugin(:Hardware) do when "Copyback" then disk[:status] = "rebuilding" else disk[:status] = "unknown" end - case Regexp.last_match(2) + case state when "Spun Up" then disk[:state] = "spun_up" when "Spun down" then disk[:state] = "spun_down" else disk[:state] = "unknown" end elsif disk && line =~ /^(\S.*\S)\s*:\s+(\S.*)$/ case Regexp.last_match(1) - when "Device Id" then disk[:smart_device] = "megaraid,#{Regexp.last_match(2)}" + when "Device Id" then disk[:device_id] = Regexp.last_match(2) when "WWN" then disk[:wwn] = Regexp.last_match(2) when "PD Type" then disk[:interface] = Regexp.last_match(2) when "Raw Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2).sub(/\s*\[.*\]$/, "")) @@ -545,7 +554,8 @@ Ohai.plugin(:Hardware) do controller = controllers[Regexp.last_match(1).to_i] elsif controller && line =~ /^Enclosure Device ID: \d+$/ disk = { - :controller => controller[:id] + :controller => controller[:id], + :arrays => [] } elsif disk && line =~ /^WWN:\s+(\S+)$/ unless devices[:disks].find { |d| d[:wwn] == Regexp.last_match(1) } @@ -553,9 +563,12 @@ Ohai.plugin(:Hardware) do disk[:wwn] = Regexp.last_match(1) devices[:disks] << disk + + disks << disk end - elsif disk && line =~ /^Firmware state:\s+(.*\S),\s*(.*\S)\s*$/ - case Regexp.last_match(1) + elsif disk && line =~ /^Firmware state:\s+(\S.*)$/ + status, state = Regexp.last_match(1).split(/,\s*/) + case status when "Unconfigured(good)" then disk[:status] = "unconfigured" when "Unconfigured(bad)" then disk[:status] = "unconfigured" when "Hotspare" then disk[:status] = "hotspare" @@ -566,14 +579,14 @@ Ohai.plugin(:Hardware) do when "Copyback" then disk[:status] = "rebuilding" else disk[:status] = "unknown" end - case Regexp.last_match(2) + case state when "Spun Up" then disk[:state] = "spun_up" when "Spun down" then disk[:state] = "spun_down" else disk[:state] = "unknown" end elsif disk && line =~ /^(\S.*\S)\s*:\s+(\S.*)$/ case Regexp.last_match(1) - when "Device Id" then disk[:smart_device] = "megaraid,#{Regexp.last_match(2)}" + when "Device Id" then disk[:device_id] = Regexp.last_match(2) when "PD Type" then disk[:interface] = Regexp.last_match(2) when "Raw Size" then disk[:size] = memory_to_disk_size(Regexp.last_match(2).sub(/\s*\[.*\]$/, "")) when "Inquiry Data" then disk[:vendor], disk[:model], disk[:serial_number] = Regexp.last_match(2).split @@ -586,6 +599,18 @@ Ohai.plugin(:Hardware) do controller[:device] = "/dev/#{File.basename(device)}" end end + + disks.each do |disk| + controller = devices[:controllers][disk[:controller]] + + if id = disk.delete(:device_id) + if device = Dir.glob("/sys/bus/pci/devices/#{controller[:pci_slot]}/host*/target0:0:#{id}/0:0:#{id}:0/block/sd*").first + disk[:device] = "/dev/#{File.basename(device)}" + else + disk[:smart_device] = "megaraid,#{id}" + end + end + end end def find_mpt1_disks(devices)