+default[:hardware][:sensors] = {}
+
if node[:dmi] and node[:dmi][:system]
case dmi.system.manufacturer
when "HP"
- if node[:lsb][:release].to_f <= 11.10
- default[:apt][:sources] |= [ "proliant-support-pack" ]
- else
- default[:apt][:sources] |= [ "management-component-pack" ]
+ default[:apt][:sources] |= [ "management-component-pack" ]
+
+ case dmi.system.product_name
+ when "ProLiant DL360 G6", "ProLiant DL360 G7"
+ default[:hardware][:sensors]["power_meter-*"][:power]["power1"] = { :ignore => true }
end
end
end
if node[:kernel] and node[:kernel][:modules]
- if node[:kernel][:modules].include?("mpt2sas")
- default[:apt][:sources] |= [ "hwraid" ]
- end
+ raidmods = node[:kernel][:modules].keys & ["cciss", "hpsa", "mptsas", "mpt2sas", "megaraid_mm", "megaraid_sas", "aacraid"]
- if node[:kernel][:modules].include?("megaraid_sas")
+ unless raidmods.empty?
default[:apt][:sources] |= [ "hwraid" ]
end
+end
- if node[:kernel][:modules].include?("aacraid")
- default[:apt][:sources] |= [ "hwraid" ]
- end
+if File.exists?("/proc/xen")
+ default[:hardware][:watchdog] = "xen_wdt"
+elsif node[:kernel][:modules].include?("i6300esb")
+ default[:hardware][:watchdog] = "none"
end