summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/client.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index db5587f..c59369b 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -106,6 +106,13 @@ class munin::client::openbsd inherits munin::client::base {
hasrestart => false,
require => [ File['/var/run/munin'], File['/var/log/munin'] ],
}
+
+ cron{'clean_munin_logfile':
+ command => 'rm /var/log/munin/munin-node.log; kill -HUP `cat /var/run/munin/munin-node.pid`',
+ minute => 0,
+ hour => 2,
+ weekday => 0,
+ }
}
class munin::client::darwin {