I've read that if anacron
is enabled cron
doesn't run the scripts inside cron.weekly/hourly/daily/hourly, as not to run them twice. So anacron
takes responsability on that folders.
However anacron
doesn't work with hourly scripts. So, who runs /etc/cron.hourly?
Sorry if it is a begginer question.
If you look at
/etc/crontab
, you'll see:Then check the status of
cron
:anacron
itself doesn't run as a service/daemon, but as a cron job:/etc/cron.d/anacron
. Socron
is running and checking ifanacron
is present for the daily, weekly and monthly tasks, but not for the hourly tasks.cron
runs the hourly tasks.