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 # https://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.
22 include_recipe "munin"
23 include_recipe "prometheus"
24 include_recipe "sysfs"
25 include_recipe "tools"
27 ohai_plugin "hardware" do
28 template "ohai.rb.erb"
31 case node[:cpu][:"0"][:vendor_id]
33 package "intel-microcode"
35 package "amd64-microcode"
38 if node[:dmi] && node[:dmi][:system]
39 case node[:dmi][:system][:manufacturer]
41 manufacturer = node[:dmi][:base_board][:manufacturer]
42 product = node[:dmi][:base_board][:product_name]
44 manufacturer = node[:dmi][:system][:manufacturer]
45 product = node[:dmi][:system][:product_name]
48 manufacturer = "Unknown"
54 if node[:roles].include?("bytemark") || node[:roles].include?("exonetric")
62 package "hp-health" do
64 notifies :restart, "service[hp-health]"
67 service "hp-health" do
68 action [:enable, :start]
69 supports :status => true, :restart => true
72 if product.end_with?("Gen8", "Gen9")
75 notifies :restart, "service[hp-ams]"
79 action [:enable, :start]
80 supports :status => true, :restart => true
87 when "TYAN Computer Corporation"
94 package "open-vm-tools"
96 # Remove timeSync plugin completely
97 # https://github.com/vmware/open-vm-tools/issues/302
98 file "/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so" do
100 notifies :restart, "service[open-vm-tools]"
103 # Attempt to tell Host we are not interested in timeSync
104 execute "vmware-toolbox-cmd-timesync-disable" do
105 command "/usr/bin/vmware-toolbox-cmd timesync disable"
109 service "open-vm-tools" do
110 action [:enable, :start]
111 supports :status => true, :restart => true
115 units.sort.uniq.each do |unit|
116 service "serial-getty@ttyS#{unit}" do
117 action [:enable, :start]
121 # if we need a different / special kernel version to make the hardware
122 # work (e.g: https://github.com/openstreetmap/operations/issues/45) then
123 # ensure that we have the package installed. the grub template will
124 # make sure that this is the default on boot.
125 if node[:hardware][:grub][:kernel]
126 kernel_version = node[:hardware][:grub][:kernel]
128 package "linux-image-#{kernel_version}-generic"
129 package "linux-image-extra-#{kernel_version}-generic"
130 package "linux-headers-#{kernel_version}-generic"
131 package "linux-tools-#{kernel_version}-generic"
133 boot_device = IO.popen(["df", "/boot"]).readlines.last.split.first
134 boot_uuid = IO.popen(["blkid", "-o", "value", "-s", "UUID", boot_device]).readlines.first.chomp
135 grub_entry = "gnulinux-advanced-#{boot_uuid}>gnulinux-#{kernel_version}-advanced-#{boot_uuid}"
140 if File.exist?("/etc/default/grub")
141 execute "update-grub" do
143 command "/usr/sbin/update-grub"
144 not_if { ENV["TEST_KITCHEN"] }
147 template "/etc/default/grub" do
152 variables :units => units, :entry => grub_entry
153 notifies :run, "execute[update-grub]"
157 execute "update-initramfs" do
159 command "update-initramfs -u -k all"
164 template "/etc/initramfs-tools/conf.d/mdadm" do
165 source "initramfs-mdadm.erb"
169 notifies :run, "execute[update-initramfs]"
174 action [:enable, :start]
177 package "ipmitool" if node[:kernel][:modules].include?("ipmi_si")
181 service "irqbalance" do
182 action [:start, :enable]
183 supports :status => false, :restart => true, :reload => false
186 # Link Layer Discovery Protocol Daemon
189 action [:start, :enable]
190 supports :status => true, :restart => true, :reload => true
196 if node[:virtualization][:role] != "guest" ||
197 (node[:virtualization][:system] != "lxc" &&
198 node[:virtualization][:system] != "lxd" &&
199 node[:virtualization][:system] != "openvz")
201 node[:kernel][:modules].each_key do |modname|
204 tools_packages << "ssacli"
205 status_packages["cciss-vol-status"] ||= []
207 tools_packages << "ssacli"
208 status_packages["cciss-vol-status"] ||= []
210 tools_packages << "lsiutil"
211 status_packages["mpt-status"] ||= []
212 when "mpt2sas", "mpt3sas"
213 tools_packages << "sas2ircu"
214 status_packages["sas2ircu-status"] ||= []
216 tools_packages << "megactl"
217 status_packages["megaraid-status"] ||= []
219 tools_packages << "megacli"
220 status_packages["megaclisas-status"] ||= []
222 tools_packages << "arcconf"
223 status_packages["aacraid-status"] ||= []
225 tools_packages << "areca"
229 node[:block_device].each do |name, attributes|
230 next unless attributes[:vendor] == "HP" && attributes[:model] == "LOGICAL VOLUME"
232 if name =~ /^cciss!(c[0-9]+)d[0-9]+$/
233 status_packages["cciss-vol-status"] |= ["cciss/#{Regexp.last_match[1]}d0"]
235 Dir.glob("/sys/block/#{name}/device/scsi_generic/*").each do |sg|
236 status_packages["cciss-vol-status"] |= [File.basename(sg)]
242 %w[ssacli lsiutil sas2ircu megactl megacli arcconf].each do |tools_package|
243 if tools_packages.include?(tools_package)
244 package tools_package
246 package tools_package do
252 if tools_packages.include?("areca")
257 repository "https://git.openstreetmap.org/private/areca.git"
261 not_if { ENV["TEST_KITCHEN"] }
264 directory "/opt/areca" do
270 if status_packages.include?("cciss-vol-status")
271 template "/usr/local/bin/cciss-vol-statusd" do
272 source "cciss-vol-statusd.erb"
276 notifies :restart, "service[cciss-vol-statusd]"
279 systemd_service "cciss-vol-statusd" do
280 description "Check cciss_vol_status values in the background"
281 exec_start "/usr/local/bin/cciss-vol-statusd"
283 protect_system "full"
285 no_new_privileges true
286 notifies :restart, "service[cciss-vol-statusd]"
289 systemd_service "cciss-vol-statusd" do
293 template "/usr/local/bin/cciss-vol-statusd" do
298 %w[cciss-vol-status mpt-status sas2ircu-status megaraid-status megaclisas-status aacraid-status].each do |status_package|
299 if status_packages.include?(status_package)
300 package status_package
302 template "/etc/default/#{status_package}d" do
303 source "raid.default.erb"
307 variables :devices => status_packages[status_package]
310 service "#{status_package}d" do
311 action [:start, :enable]
312 supports :status => false, :restart => true, :reload => false
313 subscribes :restart, "template[/etc/default/#{status_package}d]"
316 package status_package do
320 file "/etc/default/#{status_package}d" do
326 disks = if node[:hardware][:disk]
327 node[:hardware][:disk][:disks]
332 intel_ssds = disks.select { |d| d[:vendor] == "INTEL" && d[:model] =~ /^SSD/ }
334 nvmes = if node[:hardware][:pci]
335 node[:hardware][:pci].values.select { |pci| pci[:driver] == "nvme" }
340 intel_nvmes = nvmes.select { |pci| pci[:vendor_name] == "Intel Corporation" }
342 if !intel_ssds.empty? || !intel_nvmes.empty?
345 intel_ssd_tool_version = "3.0.25"
347 remote_file "#{Chef::Config[:file_cache_path]}/Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux.zip" do
348 source "https://downloadmirror.intel.com/29556/eng/Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux.zip"
351 execute "#{Chef::Config[:file_cache_path]}/Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux.zip" do
352 command "unzip Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux.zip Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux/isdct_#{intel_ssd_tool_version}-1_amd64.deb"
353 cwd Chef::Config[:file_cache_path]
356 not_if { ::File.exist?("#{Chef::Config[:file_cache_path]}/Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux/isdct_#{intel_ssd_tool_version}-1_amd64.deb") }
359 dpkg_package "isdct" do
360 version "#{intel_ssd_tool_version}-1"
361 source "#{Chef::Config[:file_cache_path]}/Intel_SSD_Data_Center_Tool_#{intel_ssd_tool_version}_Linux/isdct_#{intel_ssd_tool_version}-1_amd64.deb"
365 disks = disks.map do |disk|
366 next if disk[:state] == "spun_down" || %w[unconfigured failed].any?(disk[:status])
368 if disk[:smart_device]
369 controller = node[:hardware][:disk][:controllers][disk[:controller]]
371 if controller && controller[:device]
372 device = controller[:device].sub("/dev/", "")
373 smart = disk[:smart_device]
375 if device.start_with?("cciss/") && smart =~ /^cciss,(\d+)$/
376 array = node[:hardware][:disk][:arrays][disk[:arrays].first]
377 munin = "cciss-3#{array[:wwn]}-#{Regexp.last_match(1)}"
378 elsif smart =~ /^.*,(\d+)$/
379 munin = "#{device}-#{Regexp.last_match(1)}"
380 elsif smart =~ %r{^.*,(\d+)/(\d+)$}
381 munin = "#{device}-#{Regexp.last_match(1)}:#{Regexp.last_match(2)}"
384 elsif disk[:device] =~ %r{^/dev/(nvme\d+)n\d+$}
385 device = Regexp.last_match(1)
388 device = disk[:device].sub("/dev/", "")
398 :hddtemp => munin.tr("-:", "_")
402 disks = disks.compact.uniq
404 if disks.count.positive?
405 package "smartmontools"
407 template "/etc/cron.daily/update-smart-drivedb" do
408 source "update-smart-drivedb.erb"
414 template "/usr/local/bin/smartd-mailer" do
415 source "smartd-mailer.erb"
421 template "/etc/smartd.conf" do
422 source "smartd.conf.erb"
426 variables :disks => disks
429 template "/etc/default/smartmontools" do
430 source "smartmontools.erb"
436 service "smartmontools" do
437 action [:enable, :start]
438 subscribes :reload, "template[/etc/smartd.conf]"
439 subscribes :restart, "template[/etc/default/smartmontools]"
442 # Don't try and do munin monitoring of disks behind
443 # an Areca controller as they only allow one thing to
444 # talk to the controller at a time and smartd will
445 # throw errors if it clashes with munin
446 disks = disks.reject { |disk| disk[:smart]&.start_with?("areca,") }
449 munin_plugin "smart_#{disk[:munin]}" do
451 conf "munin.smart.erb"
452 conf_variables :disk => disk
456 template "/etc/prometheus/collectors/smart.devices" do
457 source "smart.devices.erb"
461 variables :disks => disks
464 prometheus_collector "smart" do
469 action [:stop, :disable]
473 if disks.count.positive?
474 munin_plugin "hddtemp_smartctl" do
475 conf "munin.hddtemp.erb"
476 conf_variables :disks => disks
479 munin_plugin "hddtemp_smartctl" do
481 conf "munin.hddtemp.erb"
485 plugins = Dir.glob("/etc/munin/plugins/smart_*").map { |p| File.basename(p) } -
486 disks.map { |d| "smart_#{d[:munin]}" }
488 plugins.each do |plugin|
489 munin_plugin plugin do
491 conf "munin.smart.erb"
495 if File.exist?("/etc/mdadm/mdadm.conf")
496 mdadm_conf = edit_file "/etc/mdadm/mdadm.conf" do |line|
497 line.gsub!(/^MAILADDR .*$/, "MAILADDR admins@openstreetmap.org")
502 file "/etc/mdadm/mdadm.conf" do
511 subscribes :restart, "file[/etc/mdadm/mdadm.conf]"
515 template "/etc/modules" do
524 subscribes :start, "template[/etc/modules]"
527 if node[:hardware][:watchdog]
530 template "/etc/default/watchdog" do
531 source "watchdog.erb"
535 variables :module => node[:hardware][:watchdog]
538 service "watchdog" do
539 action [:enable, :start]
543 unless Dir.glob("/sys/class/hwmon/hwmon*").empty?
546 Dir.glob("/sys/devices/platform/coretemp.*").each do |coretemp|
547 cpu = File.basename(coretemp).sub("coretemp.", "").to_i
548 chip = format("coretemp-isa-%04d", cpu)
550 temps = if File.exist?("#{coretemp}/name")
551 Dir.glob("#{coretemp}/temp*_input").map do |temp|
552 File.basename(temp).sub("temp", "").sub("_input", "").to_i
555 Dir.glob("#{coretemp}/hwmon/hwmon*/temp*_input").map do |temp|
556 File.basename(temp).sub("temp", "").sub("_input", "").to_i
561 node.default[:hardware][:sensors][chip][:temps][:temp1][:label] = "CPU #{cpu}"
565 temps.each_with_index do |temp, index|
566 node.default[:hardware][:sensors][chip][:temps]["temp#{temp}"][:label] = "CPU #{cpu} Core #{index}"
570 execute "/etc/sensors.d/chef.conf" do
572 command "/usr/bin/sensors -s"
577 template "/etc/sensors.d/chef.conf" do
578 source "sensors.conf.erb"
582 notifies :run, "execute[/etc/sensors.d/chef.conf]"
586 if node[:hardware][:shm_size]
587 execute "remount-dev-shm" do
589 command "/bin/mount -o remount /dev/shm"
598 options "rw,nosuid,nodev,size=#{node[:hardware][:shm_size]}"
599 notifies :run, "execute[remount-dev-shm]"