]> git.pld-linux.org Git - packages/apache.git/blob - apache.logrotate
be2aacb55758f2fcf14c0827f23719406887fc88
[packages/apache.git] / apache.logrotate
1 /var/log/httpd/*access_log {
2     olddir /var/log/archiv/httpd
3     sharedscripts
4     postrotate
5         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
6     endscript
7 }
8
9 /var/log/httpd/*agent_log {
10     olddir /var/log/archiv/httpd
11     sharedscripts
12     postrotate
13         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
14     endscript
15 }
16
17 /var/log/httpd/*error_log {
18     olddir /var/log/archiv/httpd
19     sharedscripts
20     postrotate
21         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
22     endscript
23 }
24
25 /var/log/httpd/*referer_log {
26     olddir /var/log/archiv/httpd
27     sharedscripts
28     postrotate
29         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
30     endscript
31 }
32
33 /var/log/httpd/*rewrite_log {
34     olddir /var/log/archiv/httpd
35     sharedscripts
36     postrotate
37         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
38     endscript
39 }
This page took 0.027281 seconds and 3 git commands to generate.