diff options
author | mh <mh@immerda.ch> | 2011-07-07 01:21:00 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2011-07-07 01:21:00 +0200 |
commit | 551b46b257b12b32450607083a7cd644ed0dff58 (patch) | |
tree | 3b4dd88d9fa9c93d52bbaba72974e8684a7578fd | |
parent | 0fd0df89f4a0bd0700b3260a4c40041c59f65660 (diff) |
Revert "fix variable naming"
This reverts commit 0fd0df89f4a0bd0700b3260a4c40041c59f65660.
-rw-r--r-- | manifests/puppetmaster/cleanup_reports.pp | 2 |
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 { |