blob: a6ba28d8644bbee2c7aadc23717a911c9a4328e2 [file] [log] [blame]
Jason M. Bills276c8182019-11-25 13:23:08 -08001# /etc/logrotate.d/rsyslog - Ported from Debian
2
3# Keep up to four 64k files for ipmi_sel (256k total)
4/var/log/ipmi_sel
5{
6 rotate 3
7 size 64k
8 missingok
9 postrotate
10 systemctl reload rsyslog 2> /dev/null || true
11 endscript
12}
13# Keep up to four 64k files for redfish (256k total)
14/var/log/redfish
15{
16 rotate 3
17 size 64k
18 missingok
19 postrotate
20 systemctl reload rsyslog 2> /dev/null || true
21 endscript
22}