archrelease: copy trunk to extra-x86_64
[arch-packages.git] / logrotate / repos / core-x86_64 / logrotate.conf
blob4193a3a7f13e40d337ef5ddc3823fafc06b599cd
1 # see "man logrotate" for details
2 # rotate log files weekly
3 weekly
5 # keep 4 weeks worth of backlogs
6 rotate 4
8 # restrict maximum size of log files
9 #size 20M
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 # Logs are moved into directory for rotation
18 # olddir /var/log/archive
20 # Ignore pacman saved files
21 tabooext + .pacorig .pacnew .pacsave
23 # Arch packages drop log rotation information into this directory
24 include /etc/logrotate.d
26 /var/log/wtmp {
27     monthly
28     create 0664 root utmp
29     minsize 1M
30     rotate 1
33 /var/log/btmp {
34     missingok
35     monthly
36     create 0600 root utmp
37     rotate 1