logrotate PKGBUILD updated
[Archlinux-Stable.git] / base / logrotate / logrotate.conf
blobfde947bbe16b996748a331315d3721d63f525e4b
1 # see "man logrotate" for details
2 # rotate log files weekly
3 weekly
5 # keep 4 weeks worth of backlogs
6 rotate 4
8 # create new (empty) log files after rotating old ones
9 create
11 # uncomment this if you want your log files compressed
12 #compress
14 # Logs are moved into directory for rotation
15 # olddir /var/log/archive
17 # Ignore pacman saved files
18 tabooext + .pacorig .pacnew .pacsave
20 # Arch packages drop log rotation information into this directory
21 include /etc/logrotate.d
23 /var/log/wtmp {
24     monthly
25     create 0664 root root
26     rotate 1