tag 426294 +patch thanks
I think the core of the problem is the cron entry in /etc/cron.d/anacron. It only runs anacron once a day, which completely defeats the purpose of anacron (which was to be able to run daily jobs even for machines which are turned off most of the day). It might be OK for weekly jobs, but it's definitely not sufficient for daily jobs. I've personally changed the 30 7 * * * root test -x /etc/init.d/anacron && /usr/sbin/invoke-rc.d anacron start >/dev/null into 30 * * * * root test -x /etc/init.d/anacron && /usr/sbin/invoke-rc.d anacron start >/dev/null a long time ago and never looked back, Stefan -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]