group "root"
mode 0644
variables :servers => servers
- notifies :restart, resources(:service => "munin-node")
+ notifies :restart, "service[munin-node]"
end
remote_directory "/usr/local/share/munin/plugins" do
files_group "root"
files_mode 0644
purge false
- notifies :restart, resources(:service => "munin-node")
+ notifies :restart, "service[munin-node]"
end
if Dir.glob("/proc/acpi/thermal_zone/*/temperature").empty?
munin_plugin "entropy"
munin_plugin "forks"
-if File.exists?("/proc/net/ip_conntrack") or File.exists?("/proc/net/nf_conntrack")
+if node[:kernel][:modules].include?("nf_conntrack")
+ package "conntrack"
+
munin_plugin "fw_conntrack"
munin_plugin "fw_forwarded_local"
else
end
end
-if %x{sysctl -n net.ipv4.ip_forward}.chomp == "1"
+if File.read("/proc/sys/net/ipv4/ip_forward").chomp == "1"
munin_plugin "fw_packets"
else
munin_plugin "fw_packets" do
munin_plugin "processes"
munin_plugin "proc_pri"
+sensors_fan = false
+sensors_temp = false
+sensors_volt = false
+
Dir.glob("/sys/class/hwmon/hwmon*").each do |hwmon|
+ package "lm-sensors"
+
hwmon = "#{hwmon}/device" unless File.exists?("#{hwmon}/name")
- if Dir.glob("#{hwmon}/fan*_input").empty?
- munin_plugin "sensors_fan" do
- action :delete
- end
- else
- munin_plugin "sensors_fan" do
- target "sensors_"
- end
+ sensors_fan = true unless Dir.glob("#{hwmon}/fan*_input").empty?
+ sensors_temp = true unless Dir.glob("#{hwmon}/temp*_input").empty?
+ sensors_volt = true unless Dir.glob("#{hwmon}/in*_input").empty?
+end
+
+if sensors_fan
+ munin_plugin "sensors_fan" do
+ target "sensors_"
end
+else
+ munin_plugin "sensors_fan" do
+ action :delete
+ end
+end
- if Dir.glob("#{hwmon}/temp*_input").empty?
- munin_plugin "sensors_temp" do
- action :delete
- end
- else
- munin_plugin "sensors_temp" do
- target "sensors_"
- end
+if sensors_temp
+ munin_plugin "sensors_temp" do
+ target "sensors_"
+ end
+else
+ munin_plugin "sensors_temp" do
+ action :delete
end
+end
- if Dir.glob("#{hwmon}/in*_input").empty?
- munin_plugin "sensors_volt" do
- action :delete
- end
- else
- munin_plugin "sensors_volt" do
- target "sensors_"
- end
+if sensors_volt
+ munin_plugin "sensors_volt" do
+ target "sensors_"
+ end
+else
+ munin_plugin "sensors_volt" do
+ action :delete
end
end