Kristyna Streitova
c1c669e98d
- simplify apache2.logrotate, use sharedscripts [bnc#713581] - remove curly brackets around format sequence "%y" in `stat --format="%{y}" %{SOURCE1}` that caused an incorrect evaluation. Add escaping to proper spec-cleaner processing in the future OBS-URL: https://build.opensuse.org/request/show/305442 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=443
32 lines
636 B
Plaintext
32 lines
636 B
Plaintext
/var/log/apache2/access_log /var/log/apache2/ssl_request_log {
|
|
compress
|
|
dateext
|
|
maxage 365
|
|
rotate 99
|
|
size=+4096k
|
|
notifempty
|
|
missingok
|
|
create 644 root root
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload apache2.service
|
|
sleep 60
|
|
endscript
|
|
}
|
|
|
|
/var/log/apache2/error_log /var/log/apache2/suexec.log /var/log/apache2/ssl_engine_log /var/log/apache2/deflate.log {
|
|
compress
|
|
dateext
|
|
maxage 365
|
|
rotate 99
|
|
size=+1024k
|
|
notifempty
|
|
missingok
|
|
create 644 root root
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload apache2.service
|
|
sleep 60
|
|
endscript
|
|
}
|