source: trunk/server/fedora/config/etc/logrotate.d/httpd @ 1769

Last change on this file since 1769 was 1323, checked in by mitchb, 15 years ago
Fix global scoping problem from r1317 and r1319 One of these days we'll accidentally get it right
File size: 438 bytes
RevLine 
[1319]1/var/log/httpd/*.log /home/logview/*log {
[1323]2    rotate 0
3    daily
4    missingok
5    notifempty
6    sharedscripts
7    postrotate
8        /bin/kill -HUP `cat /var/run/httpd/httpd.pid 2>/dev/null` 2> /dev/null || true
9    endscript
[152]10}
[1319]11
[1317]12/var/log/httpd/statistics_log {
13    rotate 14
[1323]14    daily
15    missingok
16    notifempty
17    sharedscripts
18    postrotate
19        /bin/kill -HUP `cat /var/run/httpd/httpd.pid 2>/dev/null` 2> /dev/null || true
20    endscript
[1317]21}
Note: See TracBrowser for help on using the repository browser.