http://qa.mandrakesoft.com/show_bug.cgi?id=3554
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From [EMAIL PROTECTED] 2003-03-27 16:59 -------
Fixed in -3mdk. You should have mentioned it earlier then it could have been
corrected for final :). I never left it installed but disabled. Thanks for the fix!
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
creation_date:
description:
When the two cron jobs in /etc/cron.hourly and one in
/etc/cron.daily run without inn being active at the
current run level they exit with a status code of 1
which cron reports by sending an email to root.
I changed these files to this to fix this problem:
[EMAIL PROTECTED] cron.hourly]# cat /etc/cron.hourly/inn-cron-nntpsend
#!/bin/sh
! /sbin/chkconfig innd || su - news -c /usr/bin/nntpsend
[EMAIL PROTECTED] cron.hourly]# cat /etc/cron.hourly/inn-cron-rnews
#!/bin/sh
! /sbin/chkconfig innd || /usr/bin/rnews -U
[EMAIL PROTECTED] cron.hourly]# cat /etc/cron.daily/inn-cron-expire
#!/bin/sh
! /sbin/chkconfig innd || su - news -c "/usr/bin/news.daily delayrm"
It has been this way for several releases.
Bill