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