- 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_"