From 4835560269a3485603aaf70b0e35eba28b4f3571 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 17 Jan 2011 13:22:40 -0500 Subject: fix location of puppet reports in cronjob that is run daily to cleanup reports on a monthly basis (by default) --- manifests/puppetmaster/cleanup_reports.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/puppetmaster/cleanup_reports.pp b/manifests/puppetmaster/cleanup_reports.pp index 58fb9e2..664bd81 100644 --- a/manifests/puppetmaster/cleanup_reports.pp +++ b/manifests/puppetmaster/cleanup_reports.pp @@ -2,7 +2,7 @@ class puppet::puppetmaster::cleanup_reports { # clean up reports older than $puppetmaster_cleanup_reports days 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", + content => "#!/bin/bash\nfind /var/lib/puppet/reports/ -maxdepth 2 -type f -ctime +${puppetmaster_cleanup_reports} -exec rm {} \\;\n", owner => root, group => 0, mode => 0700; } } -- cgit v1.2.3