include_recipe "apt"
include_recipe "git"
include_recipe "munin"
+include_recipe "prometheus"
include_recipe "sysfs"
include_recipe "tools"
execute "update-grub" do
action :nothing
command "/usr/sbin/update-grub"
+ not_if { ENV["TEST_KITCHEN"] }
end
template "/etc/default/grub" do
if disks.count.positive?
package "smartmontools"
+ template "/etc/cron.daily/update-smart-drivedb" do
+ source "update-smart-drivedb.erb"
+ owner "root"
+ group "root"
+ mode "755"
+ end
+
template "/usr/local/bin/smartd-mailer" do
source "smartd-mailer.erb"
owner "root"
conf_variables :disk => disk
end
end
+
+ template "/etc/prometheus/collectors/smart.devices" do
+ source "smart.devices.erb"
+ owner "root"
+ group "root"
+ mode "644"
+ variables :disks => disks
+ end
+
+ prometheus_collector "smart" do
+ interval "15m"
+ end
else
service "smartd" do
action [:stop, :disable]