1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| # /etc/logrotate.d/rsyslog - Ported from Debian
|
| /var/log/syslog
| {
| rotate 7
| daily
| missingok
| notifempty
| delaycompress
| compress
| postrotate
| @BINDIR@/pkill -HUP rsyslogd 2> /dev/null || true
| endscript
| }
|
| /var/log/mail.info
| /var/log/mail.warn
| /var/log/mail.err
| /var/log/mail.log
| /var/log/daemon.log
| /var/log/kern.log
| /var/log/auth.log
| /var/log/user.log
| /var/log/lpr.log
| /var/log/cron.log
| /var/log/debug
| /var/log/messages
| {
| rotate 4
| weekly
| missingok
| notifempty
| compress
| delaycompress
| sharedscripts
| postrotate
| @BINDIR@/pkill -HUP rsyslogd 2> /dev/null || true
| endscript
| }
|
|