summaryrefslogtreecommitdiff
path: root/manifests/logrotate
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/logrotate')
-rw-r--r--manifests/logrotate/centos.pp8
-rw-r--r--manifests/logrotate/centos/vhosts.pp10
2 files changed, 18 insertions, 0 deletions
diff --git a/manifests/logrotate/centos.pp b/manifests/logrotate/centos.pp
new file mode 100644
index 0000000..6571ada
--- /dev/null
+++ b/manifests/logrotate/centos.pp
@@ -0,0 +1,8 @@
+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' ],
+ }
+}
diff --git a/manifests/logrotate/centos/vhosts.pp b/manifests/logrotate/centos/vhosts.pp
new file mode 100644
index 0000000..941f50d
--- /dev/null
+++ b/manifests/logrotate/centos/vhosts.pp
@@ -0,0 +1,10 @@
+class apache::logrotate::centos::vhosts inherits 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]',
+ 'ins file before /files/etc/logrotate.d/httpd/rule/*[1]',
+ 'set /files/etc/logrotate.d/httpd/rule/file[1] /var/log/httpd/*log',
+ 'set /files/etc/logrotate.d/httpd/rule/file[2] /var/www/vhosts/*/logs/*log' ],
+ }
+}