diff options
Diffstat (limited to 'manifests/logrotate/centos.pp')
-rw-r--r-- | manifests/logrotate/centos.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/logrotate/centos.pp b/manifests/logrotate/centos.pp index 6571ada..4381205 100644 --- a/manifests/logrotate/centos.pp +++ b/manifests/logrotate/centos.pp @@ -1,8 +1,10 @@ +# add vhost folders to logrotation class apache::logrotate::centos { - # add vhost folders to logrotation augeas{'logrotate_httpd': changes => [ 'rm /files/etc/logrotate.d/httpd/rule/file', 'ins file before /files/etc/logrotate.d/httpd/rule/*[1]', 'set /files/etc/logrotate.d/httpd/rule/file[1] /var/log/httpd/*log' ], + onlyif => 'get /files/etc/logrotate.d/httpd/rule/file[1] != "/var/log/httpd/*log"', + require => Package['apache'], } } |