]> git.openstreetmap.org Git - chef.git/blob - cookbooks/hardware/recipes/default.rb
Use ttyS1 on karm
[chef.git] / cookbooks / hardware / recipes / default.rb
1 #
2 # Cookbook Name:: hardware
3 # Recipe:: default
4 #
5 # Copyright 2012, OpenStreetMap Foundation
6 #
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
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "tools"
21 include_recipe "munin"
22
23 ohai_plugin "hardware" do
24   template "ohai.rb.erb"
25 end
26
27 case node[:cpu][:"0"][:vendor_id]
28 when "GenuineIntel"
29   package "intel-microcode"
30 end
31
32 case node[:cpu][:"0"][:vendor_id]
33 when "AuthenticAMD"
34   if node[:lsb][:release].to_f >= 14.04
35     package "amd64-microcode"
36   end
37 end
38
39 if node[:dmi] && node[:dmi][:system]
40   case node[:dmi][:system][:manufacturer]
41   when "empty"
42     manufacturer = node[:dmi][:base_board][:manufacturer]
43     product = node[:dmi][:base_board][:product_name]
44   else
45     manufacturer = node[:dmi][:system][:manufacturer]
46     product = node[:dmi][:system][:product_name]
47   end
48 else
49   manufacturer = "Unknown"
50   product = "Unknown"
51 end
52
53 units = []
54
55 if node[:roles].include?("bytemark") || node[:roles].include?("exonetric")
56   units << "0"
57 end
58
59 case manufacturer
60 when "HP"
61   package "hponcfg"
62   package "hp-health"
63   units << "1"
64 when "TYAN"
65   units << "0"
66 when "TYAN Computer Corporation"
67   units << "0"
68 when "Supermicro"
69   case product
70   when "H8DGU", "X9SCD", "X7DBU", "X7DW3", "X9DR7/E-(J)LN4F", "X9DR3-F", "X9DRW", "SYS-2028U-TN24R4T+"
71     units << "1"
72   else
73     units << "0"
74   end
75 when "IBM"
76   units << "0"
77 end
78
79 units.sort.uniq.each do |unit|
80   if node[:lsb][:release].to_f >= 16.04
81     service "serial-getty@ttyS#{unit}" do
82       action [:enable, :start]
83     end
84   else
85     file "/etc/init/ttySttyS#{unit}.conf" do
86       action :delete
87     end
88
89     template "/etc/init/ttyS#{unit}.conf" do
90       source "tty.conf.erb"
91       owner "root"
92       group "root"
93       mode 0644
94       variables :unit => unit
95     end
96
97     service "ttyS#{unit}" do
98       provider Chef::Provider::Service::Upstart
99       action [:enable, :start]
100       supports :status => true, :restart => true, :reload => false
101       subscribes :restart, "template[/etc/init/ttyS#{unit}.conf]"
102     end
103   end
104 end
105
106 # if we need a different / special kernel version to make the hardware
107 # work (e.g: https://github.com/openstreetmap/operations/issues/45) then
108 # ensure that we have the package installed. the grub template will
109 # make sure that this is the default on boot.
110 if node[:hardware][:grub][:kernel]
111   kernel_version = node[:hardware][:grub][:kernel]
112
113   package "linux-image-#{kernel_version}-generic"
114   package "linux-image-extra-#{kernel_version}-generic"
115   package "linux-headers-#{kernel_version}-generic"
116
117   boot_device = IO.popen(["df", "/boot"]).readlines.last.split.first
118   boot_uuid = IO.popen(["blkid", "-o", "value", "-s", "UUID", boot_device]).readlines.first.chomp
119   grub_entry = "gnulinux-advanced-#{boot_uuid}>gnulinux-#{kernel_version}-advanced-#{boot_uuid}"
120 else
121   grub_entry = "0"
122 end
123
124 if File.exist?("/etc/default/grub")
125   execute "update-grub" do
126     action :nothing
127     command "/usr/sbin/update-grub"
128   end
129
130   template "/etc/default/grub" do
131     source "grub.erb"
132     owner "root"
133     group "root"
134     mode 0644
135     variables :units => units, :entry => grub_entry
136     notifies :run, "execute[update-grub]"
137   end
138 end
139
140 execute "update-initramfs" do
141   action :nothing
142   command "update-initramfs -u -k all"
143   user "root"
144   group "root"
145 end
146
147 template "/etc/initramfs-tools/conf.d/mdadm" do
148   source "initramfs-mdadm.erb"
149   owner "root"
150   group "root"
151   mode 0644
152   notifies :run, "execute[update-initramfs]"
153 end
154
155 package "haveged"
156 service "haveged" do
157   action [:enable, :start]
158 end
159
160 if node[:kernel][:modules].include?("ipmi_si")
161   package "ipmitool"
162 end
163
164 if node[:lsb][:release].to_f >= 12.10
165   package "irqbalance"
166
167   template "/etc/default/irqbalance" do
168     source "irqbalance.erb"
169     owner "root"
170     group "root"
171     mode 0644
172   end
173
174   service "irqbalance" do
175     action [:start, :enable]
176     supports :status => false, :restart => true, :reload => false
177     subscribes :restart, "template[/etc/default/irqbalance]"
178   end
179 end
180
181 tools_packages = []
182 status_packages = {}
183
184 node[:kernel][:modules].each_key do |modname|
185   case modname
186   when "cciss"
187     tools_packages << "hpssacli"
188     status_packages["cciss-vol-status"] ||= []
189   when "hpsa"
190     tools_packages << "hpssacli"
191     status_packages["cciss-vol-status"] ||= []
192   when "mptsas"
193     tools_packages << "lsiutil"
194     # status_packages["mpt-status"] ||= []
195   when "mpt2sas", "mpt3sas"
196     tools_packages << "sas2ircu"
197     status_packages["sas2ircu-status"] ||= []
198   when "megaraid_mm"
199     tools_packages << "megactl"
200     status_packages["megaraid-status"] ||= []
201   when "megaraid_sas"
202     tools_packages << "megacli"
203     status_packages["megaclisas-status"] ||= []
204   when "aacraid"
205     tools_packages << "arcconf"
206     status_packages["aacraid-status"] ||= []
207   when "arcmsr"
208     tools_packages << "areca"
209   end
210 end
211
212 node[:block_device].each do |name, attributes|
213   next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
214
215   if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
216     status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
217   else
218     Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
219       status_packages["cciss-vol-status"] |= [File.basename(sg)]
220     end
221   end
222 end
223
224 %w(hpssacli lsiutil sas2ircu megactl megacli arcconf).each do |tools_package|
225   if tools_packages.include?(tools_package)
226     package tools_package
227   else
228     package tools_package do
229       action :purge
230     end
231   end
232 end
233
234 if tools_packages.include?("areca")
235   include_recipe "git"
236
237   git "/opt/areca" do
238     action :sync
239     repository "git://chef.openstreetmap.org/areca.git"
240     user "root"
241     group "root"
242   end
243 else
244   directory "/opt/areca" do
245     action :delete
246     recursive true
247   end
248 end
249
250 ["cciss-vol-status", "mpt-status", "sas2ircu-status", "megaraid-status", "megaclisas-status", "aacraid-status"].each do |status_package|
251   if status_packages.include?(status_package)
252     package status_package
253
254     template "/etc/default/#{status_package}d" do
255       source "raid.default.erb"
256       owner "root"
257       group "root"
258       mode 0644
259       variables :devices => status_packages[status_package]
260     end
261
262     service "#{status_package}d" do
263       action [:start, :enable]
264       supports :status => false, :restart => true, :reload => false
265       subscribes :restart, "template[/etc/default/#{status_package}d]"
266     end
267   else
268     package status_package do
269       action :purge
270     end
271
272     file "/etc/default/#{status_package}d" do
273       action :delete
274     end
275   end
276 end
277
278 disks = if node[:hardware][:disk]
279           node[:hardware][:disk][:disks]
280         else
281           []
282         end
283
284 disks = disks.map do |disk|
285   next if disk[:state] == "spun_down"
286
287   if disk[:smart_device]
288     controller = node[:hardware][:disk][:controllers][disk[:controller]]
289     device = controller[:device].sub("/dev/", "")
290     smart = disk[:smart_device]
291
292     if device.start_with?("cciss/") && smart =~ /^cciss,(\d+)$/
293       array = node[:hardware][:disk][:arrays][disk[:arrays].first]
294       munin = "cciss-3#{array[:wwn]}-#{Regexp.last_match(1)}"
295     elsif smart =~ /^.*,(\d+)$/
296       munin = "#{device}-#{Regexp.last_match(1)}"
297     elsif smart =~ %r{^.*,(\d+)/(\d+)$}
298       munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}"
299     end
300   elsif disk[:device]
301     device = disk[:device].sub("/dev/", "")
302     munin = device
303   end
304
305   next if device.nil?
306
307   Hash[
308     :device => device,
309     :smart => smart,
310     :munin => munin,
311     :hddtemp => munin.tr("-:", "_")
312   ]
313 end
314
315 disks = disks.compact
316
317 if disks.count > 0
318   package "smartmontools"
319
320   template "/usr/local/bin/smartd-mailer" do
321     source "smartd-mailer.erb"
322     owner "root"
323     group "root"
324     mode 0755
325   end
326
327   template "/etc/smartd.conf" do
328     source "smartd.conf.erb"
329     owner "root"
330     group "root"
331     mode 0644
332     variables :disks => disks
333     notifies :reload, "service[smartmontools]"
334   end
335
336   template "/etc/default/smartmontools" do
337     source "smartmontools.erb"
338     owner "root"
339     group "root"
340     mode 0644
341     notifies :restart, "service[smartmontools]"
342   end
343
344   service "smartmontools" do
345     action [:enable, :start]
346     supports :status => true, :restart => true, :reload => true
347   end
348
349   # Don't try and do munin monitoring of disks behind
350   # an Areca controller as they only allow one thing to
351   # talk to the controller at a time and smartd will
352   # throw errors if it clashes with munin
353   disks = disks.reject { |disk| disk[:smart] && disk[:smart].start_with?("areca,") }
354
355   disks.each do |disk|
356     munin_plugin "smart_#{disk[:munin]}" do
357       target "smart_"
358       conf "munin.smart.erb"
359       conf_variables :disk => disk
360     end
361   end
362 else
363   service "smartmontools" do
364     action [:stop, :disable]
365   end
366 end
367
368 if disks.count > 0
369   munin_plugin "hddtemp_smartctl" do
370     conf "munin.hddtemp.erb"
371     conf_variables :disks => disks
372   end
373 else
374   munin_plugin "hddtemp_smartctl" do
375     action :delete
376     conf "munin.hddtemp.erb"
377   end
378 end
379
380 plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
381           disks.map { |d| "smart_#{d[:munin]}" }
382
383 plugins.each do |plugin|
384   munin_plugin plugin do
385     action :delete
386   end
387 end
388
389 if File.exist?("/etc/mdadm/mdadm.conf")
390   mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
391     line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
392
393     line
394   end
395
396   file "/etc/mdadm/mdadm.conf" do
397     owner "root"
398     group "root"
399     mode 0644
400     content mdadm_conf
401   end
402
403   service "mdadm" do
404     action :nothing
405     subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
406   end
407 end
408
409 template "/etc/modules" do
410   source "modules.erb"
411   owner "root"
412   group "root"
413   mode 0644
414 end
415
416 if node[:lsb][:release].to_f <= 12.10
417   service "module-init-tools" do
418     provider Chef::Provider::Service::Upstart
419     action :nothing
420     subscribes :start, "template[/etc/modules]"
421   end
422 else
423   service "kmod" do
424     if node[:lsb][:release].to_f >= 15.10
425       provider Chef::Provider::Service::Systemd
426     else
427       provider Chef::Provider::Service::Upstart
428     end
429     action :nothing
430     subscribes :start, "template[/etc/modules]"
431   end
432 end
433
434 if node[:hardware][:watchdog]
435   package "watchdog"
436
437   template "/etc/default/watchdog" do
438     source "watchdog.erb"
439     owner "root"
440     group "root"
441     mode 0644
442     variables :module => node[:hardware][:watchdog]
443   end
444
445   service "watchdog" do
446     action [:enable, :start]
447   end
448 end
449
450 unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
451   package "lm-sensors"
452
453   Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
454     cpu = File.basename(coretemp).sub("coretemp.", "").to_i
455     chip = format("coretemp-isa-%04d", cpu)
456
457     temps = if File.exist?("#{coretemp}/name")
458               Dir.glob("#{coretemp}/temp*_input").map do |temp|
459                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
460               end.sort
461             else
462               Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
463                 File.basename(temp).sub("temp", "").sub("_input", "").to_i
464               end.sort
465             end
466
467     if temps.first == 1
468       node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
469       temps.shift
470     end
471
472     temps.each_with_index do |temp, index|
473       node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
474     end
475   end
476
477   execute "/etc/sensors.d/chef.conf" do
478     action :nothing
479     command "/usr/bin/sensors -s"
480     user "root"
481     group "root"
482   end
483
484   template "/etc/sensors.d/chef.conf" do
485     source "sensors.conf.erb"
486     owner "root"
487     group "root"
488     mode 0644
489     notifies :run, "execute[/etc/sensors.d/chef.conf]"
490   end
491 end