summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-07-07 01:21:00 +0200
committermh <mh@immerda.ch>2011-07-07 01:21:00 +0200
commit551b46b257b12b32450607083a7cd644ed0dff58 (patch)
tree3b4dd88d9fa9c93d52bbaba72974e8684a7578fd /manifests
parent0fd0df89f4a0bd0700b3260a4c40041c59f65660 (diff)
Revert "fix variable naming"
This reverts commit 0fd0df89f4a0bd0700b3260a4c40041c59f65660.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/puppetmaster/cleanup_reports.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster/cleanup_reports.pp b/manifests/puppetmaster/cleanup_reports.pp
index d9bd2ca..d25e8ac 100644
--- a/manifests/puppetmaster/cleanup_reports.pp
+++ b/manifests/puppetmaster/cleanup_reports.pp
@@ -6,7 +6,7 @@ class puppet::puppetmaster::cleanup_reports(
if $cleanup_older_than != 'absent' {
File['/etc/cron.daily/puppet_reports_cleanup.sh']{
- content => "#!/bin/bash\nfind ${puppet::puppetmaster::cleanup_reports::reports_dir} -maxdepth 2 -type f -ctime +${puppet::puppetmaster::cleanup_reports::cleanup_older_than} -exec rm {} \\;\n",
+ content => "#!/bin/bash\nfind ${puppet::puppetmaster::cleanup_reports::reports_dir} -maxdepth 2 -type f -ctime +${puppet::puppetmaster::cleanup_reports::cleanup_olderthan} -exec rm {} \\;\n",
owner => root, group => 0, mode => 0700,
}
} else {