view common/logrotate-httpd @ 78:cbe27a97bcd1 puppet-3.6

Fix typo (missing single quote)
author IBBoard <dev@ibboard.co.uk>
date Tue, 27 Oct 2015 08:53:00 +0000
parents 956e484adc12
children
line wrap: on
line source

/var/log/apache/*log {
    monthly
    rotate 3
    missingok
    compress
    notifempty
    sharedscripts
    postrotate
        /sbin/service httpd reload > /dev/null 2>/dev/null || true
    endscript
}