2 # Cookbook Name:: hardware
5 # Copyright 2012, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 case node[:cpu][:"0"][:vendor_id]
22 package "intel-microcode"
25 if node[:dmi] and node[:dmi][:system]
26 case node[:dmi][:system][:manufacturer]
28 manufacturer = node[:dmi][:base_board][:manufacturer]
29 product = node[:dmi][:base_board][:product_name]
31 manufacturer = node[:dmi][:system][:manufacturer]
32 product = node[:dmi][:system][:product_name]
35 manufacturer = "Unknown"
48 when "TYAN Computer Corporation"
53 when "H8DGU", "X9SCD", "X7DBU", "X7DW3", "X9DR7/E-(J)LN4F", "X9DR3-F"
65 if manufacturer == "HP" and node[:lsb][:release].to_f > 11.10
68 git "/opt/hp/hp-legacy" do
70 repository "git://chef.openstreetmap.org/hp-legacy.git"
75 link "/opt/hp/hp-health/bin/hpasmd" do
76 to "/opt/hp/hp-legacy/hpasmd"
79 link "/usr/lib/libhpasmintrfc.so.3.0" do
80 to "/opt/hp/hp-legacy/libhpasmintrfc.so.3.0"
83 link "/usr/lib/libhpasmintrfc.so.3" do
84 to "libhpasmintrfc.so.3.0"
87 link "/usr/lib/libhpasmintrfc.so" do
88 to "libhpasmintrfc.so.3.0"
93 file "/etc/init/ttySttyS#{unit}.conf" do
97 template "/etc/init/ttyS#{unit}.conf" do
102 variables :unit => unit, :speed => speed
105 service "ttyS#{unit}" do
106 provider Chef::Provider::Service::Upstart
107 action [ :enable, :start ]
108 supports :status => true, :restart => true, :reload => false
109 subscribes :restart, resources(:template => "/etc/init/ttyS#{unit}.conf")
113 if File.exist?("/etc/default/grub")
114 execute "update-grub" do
116 command "/usr/sbin/update-grub"
119 template "/etc/default/grub" do
124 variables :unit => unit, :speed => speed
125 notifies :run, resources(:execute => "update-grub")
129 execute "update-initramfs" do
131 command "update-initramfs -u -k all"
136 template "/etc/initramfs-tools/conf.d/mdadm" do
137 source "initramfs-mdadm.erb"
141 notifies :run, "execute[update-initramfs]"
147 node[:kernel][:modules].each_key do |modname|
150 tools_packages << "hpacucli"
151 status_packages["cciss-vol-status"] ||= []
153 tools_packages << "hpacucli"
154 status_packages["cciss-vol-status"] ||= []
156 tools_packages << "lsiutil"
157 status_packages["mpt-status"] ||= []
159 tools_packages << "sas2ircu"
160 status_packages["sas2ircu-status"] ||= []
162 tools_packages << "megactl"
163 status_packages["megaraid-status"] ||= []
165 tools_packages << "megacli"
166 status_packages["megaclisas-status"] ||= []
168 tools_packages << "arcconf"
169 status_packages["aacraid-status"] ||= []
173 node[:block_device].each do |name,attributes|
174 if attributes[:vendor] == "HP" and attributes[:model] == "LOGICAL VOLUME"
175 if name =~ /^cciss!(.*)$/
176 status_packages["cciss-vol-status"] |= [ "cciss/#{$1}" ]
178 Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
179 status_packages["cciss-vol-status"] |= [ File.basename(sg) ]
185 ["hpacucli", "lsiutil", "sas2ircu", "megactl", "megacli", "arcconf"].each do |tools_package|
186 if tools_packages.include?(tools_package)
187 package tools_package
189 package tools_package do
195 ["cciss-vol-status", "mpt-status", "sas2ircu-status", "megaraid-status", "megaclisas-status", "aacraid-status"].each do |status_package|
196 if status_packages.include?(status_package)
197 package status_package
199 template "/etc/default/#{status_package}d" do
200 source "raid.default.erb"
204 variables :devices => status_packages[status_package]
207 service "#{status_package}d" do
208 action [ :start, :enable ]
209 supports :status => false, :restart => true, :reload => false
210 subscribes :restart, "template[/etc/default/#{status_package}d]"
213 package status_package do
217 file "/etc/default/#{status_package}d" do