updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / logrotate-xz / etc_logrotate.conf
blob80cad55aa686d7cf8a6de63d7fdfc362ac34053e
2 # logrotate degaults, see "man logrotate" for details
5 # rotate log files weekly
6 weekly
8 # keep 4 weeks worth of backlogs
9 rotate 4
11 # create new (empty) log files after rotating old ones
12 create
14 # uncomment this if you want your log files compressed
15 compress
17 # uncomment this if you want to use gzip for compression, default .xz
18 #compressext .gz
20 # uncomment this if you want to use gzip for compression, default /usr/bin/xz
21 #compresscmd /bin/gzip
23 # uncomment this if you want to use gunzip for decompression, default /usr/bin/unxz
24 #uncompresscmd /bin/gunzip
26 # uncomment this if you want delay compression
27 #delaycompress
29 # need not rotate empty log files
30 notifempty
32 # Logs are moved into directory for rotation
33 # olddir /var/log/archive
35 # Ignore pacman saved files
36 tabooext + .pacorig .pacnew .pacsave
38 # packages drop log rotation information into this directory
39 include /etc/logrotate.d
41 # no packages own wtmp, or btmp -- we'll rotate them here
42 /var/log/btmp {
43     create 0664 root utmp
44     missingok
45     monthly
46     rotate 1
49 /var/log/wtmp {
50     create 0664 root utmp
51     missingok
52     monthly
53     rotate 1
56 # other system-specific logs may be configured here