Initial commit

This commit is contained in:
Your Name
2026-04-23 17:07:55 +08:00
commit b7e39e063b
16725 changed files with 1625565 additions and 0 deletions
@@ -0,0 +1,32 @@
# /etc/logrotate.d/rsyslog - Ported from Debian
# Keep up to four 64k files for ipmi_sel (256k total)
/var/log/ipmi_sel
{
rotate 3
size 64k
missingok
postrotate
systemctl reload rsyslog 2> /dev/null || true
endscript
}
# Keep up to four 64k files for redfish (256k total)
/var/log/redfish
{
rotate 3
size 64k
missingok
postrotate
systemctl reload rsyslog 2> /dev/null || true
endscript
}
# Keep up to two 2k files for gpio log (4k total)
/usr/share/mori-vrlog/gpio.log
{
rotate 1
size 2k
missingok
postrotate
systemctl reload rsyslog 2> /dev/null || true
endscript
}