and get the path right
[mirror/dsa-puppet.git] / modules / munin-node / manifests / init.pp
index 9477743..d70ffdc 100644 (file)
@@ -37,6 +37,7 @@ class munin-node {
         "load":;
         "memory":;
         "ntp_offset":;
+        "ntp_states":;
         "open_files":;
         "open_inodes":;
         "processes":;
@@ -45,18 +46,23 @@ class munin-node {
         "vmstat":;
     }
 
+    case $spamd {
+        "true": {
+              activate_munin_check { "spamassassin":; }
+        }
+    }
+
     file {
         "/etc/munin/munin-node.conf":
             source  => [ "puppet:///munin-node/per-host/$fqdn/munin-node.conf",
                          "puppet:///munin-node/common/munin-node.conf" ],
             require => Package["munin-node"],
-            notify  => Exec["munin-node restart"],
+            notify  => Exec["munin-node restart"];
 
         "/etc/munin/plugin-conf.d/munin-node":
-            source  => [ "puppet:///munin-node/per-host/$fqdn/munin-node.plugin.conf",
-                         "puppet:///munin-node/common/munin-node.plugin.conf" ],
+            content => template("munin-node/munin-node.plugin.conf.erb"),
             require => Package["munin-node"],
-            notify  => Exec["munin-node restart"],
+            notify  => Exec["munin-node restart"];
     }
 
     exec { "munin-node restart":