Added a conditional/different directory hierarchy for f7/f8 mirrors.
[nodeconfig.git] / logrotate.conf
1 # see "man logrotate" for details
2 # rotate log files weekly
3 weekly
4
5 # keep 4 weeks worth of backlogs
6 rotate 4
7
8 # create new (empty) log files after rotating old ones
9 create
10
11 # uncomment this if you want your log files compressed
12 #compress
13
14 # RPM packages drop log rotation information into this directory
15 include /etc/logrotate.d
16
17 # no packages own wtmp -- we'll rotate them here
18 /var/log/wtmp {
19     monthly
20     create 0664 root utmp
21     rotate 1000
22     compress
23 }
24
25 # system-specific logs may be also be configured here.