シノバーです
ppxp-2001080415-0vl1 をインストールしていると次のようにlogrotatedが文句を言います。
/etc/cron.daily/logrotate:
error: ppxp:6 unknown option 'ppxp' -- ignoring line
error: ppxp:6 unexpected text
/etc/logrotate.d/ppxp の内容は次のようになっています。
# logrotate for ppxp
#compress
rotate 4
weekly
/var/log/{ppxp.log,qdial.log,account} {
notifempty
missingok
}
この{xxx,xx,xxxx}という表記をlogrotatedが解釈できないようです。
次のように変更すれば回避できます。
# logrotate for ppxp
#compress
rotate 4
weekly
/var/log/ppxp/*[^0-9] {
notifempty
missingok
}
--
Masaki Shinomiya <shino@xxxxxx>
http://shino.pos.to/linux/