aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/logrotate
blob: ce5e3e84af06157162fa82b5026f72d64407e51d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/var/log/httpd/*_log /var/log/httpd/apache_runtime_status /var/log/httpd/ssl_mutex {
    rotate <%= httpdlogs_rotate %>
    monthly
    missingok
    notifempty
    nocompress
    prerotate
	/etc/rc.d/init.d/httpd closelogs > /dev/null 2>&1 || :
    endscript
    postrotate
	/etc/rc.d/init.d/httpd closelogs > /dev/null 2>&1 || :
    endscript
}