summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/cleanup_reports.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/puppetmaster/cleanup_reports.pp')
-rw-r--r--manifests/puppetmaster/cleanup_reports.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/puppetmaster/cleanup_reports.pp b/manifests/puppetmaster/cleanup_reports.pp
index 4d76ceb..58fb9e2 100644
--- a/manifests/puppetmaster/cleanup_reports.pp
+++ b/manifests/puppetmaster/cleanup_reports.pp
@@ -1,6 +1,7 @@
class puppet::puppetmaster::cleanup_reports {
+
# clean up reports older than $puppetmaster_cleanup_reports days
- file{'/etc/cron.daily/puppet_reports_cleanup.sh':
+ file { '/etc/cron.daily/puppet_reports_cleanup.sh':
content => "#!/bin/bash\nfind /var/log/puppet/reports/ -maxdepth 2 -type f -ctime +${puppetmaster_cleanup_reports} -exec rm {} \\;\n",
owner => root, group => 0, mode => 0700;
}