diff options
author | mh <mh@immerda.ch> | 2009-08-20 15:27:22 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2009-08-20 15:27:22 +0200 |
commit | b96c7630ffc98504d166e1f59ffa878bd9c9c447 (patch) | |
tree | c6528bb6977e528f6d42c95245125a21a7107819 | |
parent | ef7f35375645924c45c0602ac21d17082e945f34 (diff) |
fix typo
-rw-r--r-- | manifests/puppetmaster.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster.pp b/manifests/puppetmaster.pp index 42754df..a210c85 100644 --- a/manifests/puppetmaster.pp +++ b/manifests/puppetmaster.pp @@ -50,7 +50,7 @@ class puppet::puppetmaster::base inherits puppet::base { } file{'/etc/cron.daily/puppet_reports_cleanup.sh': - content => "#!/bin/bash\nfind /var/log/puppet/reports/ -maxdepth 2 -type f -ctime +30 -exec rm {} \\;\n" + content => "#!/bin/bash\nfind /var/log/puppet/reports/ -maxdepth 2 -type f -ctime +30 -exec rm {} \\;\n", owner => root, group => 0, mode => 0700; } } |