On 2007-08-04 at 16:05:17, Filippo Giunchedi wrote:
> reported below:
> REMOVE CRON.DAILY ['/usr/bin/send-reminders not found.\n'] []
> AUTOREMOVE CRON.DAILY ['/usr/bin/send-reminders not found.\n'] []
>
> you should check that send-reminders is present and executable
There is a check for that, in fact that "... not found" message comes from
the check:
$ cat /etc/cron.daily/email-reminder
#!/bin/sh
SCRIPT=/usr/bin/send-reminders
if [ -e "$SCRIPT" -a -x "$SCRIPT" ]; then
$SCRIPT
else
echo "$SCRIPT not found."
exit 1;
fi
Should I remove the "else" clause? I put it there to give a warning to
admins if the cron job can't find the script...
Francois
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]