24 lines
742 B
Plaintext
24 lines
742 B
Plaintext
|
/var/log/apache2/*.log {
|
||
|
daily
|
||
|
missingok
|
||
|
rotate 8
|
||
|
compress
|
||
|
delaycompress
|
||
|
ifempty
|
||
|
create 640 root adm
|
||
|
sharedscripts
|
||
|
postrotate
|
||
|
if invoke-rc.d apache2 status > /dev/null 2>&1; then \
|
||
|
invoke-rc.d apache2 reload > /dev/null 2>&1; \
|
||
|
fi;
|
||
|
if [ -f /var/log/apache2/access.log.1 ]; then
|
||
|
/usr/local/sbin/split-apache-logfile.pl < /var/log/apache2/access.log.1
|
||
|
fi
|
||
|
endscript
|
||
|
prerotate
|
||
|
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
|
||
|
run-parts /etc/logrotate.d/httpd-prerotate; \
|
||
|
fi; \
|
||
|
endscript
|
||
|
}
|