Re: missing anacron init.d file
Reply #1 –
Never mind. I solved the issue by creating /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# run-parts
01 * * * * root run-parts /etc/cron.hourly
0 18 * * * root run-parts /etc/cron.daily
22 18 * * 0 root run-parts /etc/cron.weekly
42 18 1 * * root run-parts /etc/cron.monthly
So the file 0anacron supplied by system/cronie in /etc/cron.hourly is now executed at 1 minute past every hour. I guess this is the way anacron is handled by cronie.