/etc/cron.daily/logrotateがエラーを起こし、crontabが動きません。
エラーは以下のとおりですが、見かたがまったくわかりません。
どなたかご教授をお願いいたします。
error: Ignoring swatch~, because of ~ ending
error: syslog:7 lines must begin with a keyword or a filename (possibly in double quotes)
error: syslog:8 missing end of line
error: syslog:8 duplicate log entry for /var/log/messages
中のソースはこちらです。
#!/bin/sh
/usr/sbin/logrotate /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
"/usr/bin/logger" -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0
お礼
etc/logrotate.d/syslogの記述ミスかも知れません。 もう一度記述を確認して参ります、ありがとうございました。