Setup log rotation for Phoenix Firewall
From CobaltFAQs
One thing I have noticed after running my RaQ 4 with the RaQ 550 OS is that the /var partition was filling up. This is because the /var/log/phoenix.log is not rotated by default. (Phoenix is the internal firewall that Cobalt uses to protect the RaQ 550.)
To auto-rotate like other logs on the server, make this file (/etc/logrotate.d/phoenix):
/var/log/phoenix.log {
missingok
compress
rotate 2
size 5M
}
--Chrisd 11:26, 4 May 2006 (PDT)
