]> TLD Linux GIT Repositories - packages/logrotate.git/blob - logrotate.conf
- merged 3.14.0 from PLD
[packages/logrotate.git] / logrotate.conf
1 # See "man logrotate" for details.
2 # Rotate log files weekly.
3 weekly
4
5 # Keep 10 weeks worth of backlogs.
6 rotate 10
7
8 # Rotate logs when they grow bigger than 100kB
9 minsize 100k
10
11 # Don't mail old log files to any address.
12 nomail
13
14 # Create new (empty) log files after rotating old ones.
15 create 640 root logs
16
17 # use date as a suffix of the rotated file
18 dateext
19
20 # Uncomment this if you want your log files compressed.
21 compress
22
23 # Postpone compression of the previous log file to the next rotation cycle.
24 nodelaycompress
25
26 # If the log file is missing, go on to the next one without issuing
27 # an error message.
28 missingok
29
30 # Logs are moved into directory for rotation.
31 olddir /var/log/archive
32
33 # Do not rotate the log if it is empty.
34 notifempty
35
36 # system-specific logs may be configured here
37
38 # RPM packages drop log rotation information into this directory.
39 include /etc/logrotate.d