]> git.pld-linux.org Git - packages/squid.git/blob - squid.logrotate
- up to 3.1.12 by Marcin Rybak <marcin.rybak<#>gmail.com>
[packages/squid.git] / squid.logrotate
1 /var/log/squid/access*.log {
2         olddir /var/log/archive/squid
3 #       dateext
4         compress
5         create 660 root squid
6         postrotate
7                 # signal Squid to restart logging with the new files
8                 /usr/sbin/squid -k rotate
9         endscript
10         sharedscripts
11 }
12
13 /var/log/squid/[sc]*.log {
14         olddir /var/log/archive/squid
15         compress
16         create 660 root squid
17         postrotate
18                 # signal Squid to restart logging with the new files
19                 /usr/sbin/squid -k rotate
20         endscript
21         sharedscripts
22 }
This page took 0.569651 seconds and 3 git commands to generate.