I'm trying to get cron.daily to run just after midnight with the line below
2 0 * * * * ... (the rest is the standard verbiage)
However it is run at 07:36 and claims to be run by anacron (I don't necessarily believe that) What is the scoop, Oh yeah, my system is in the PST8PDT timexome.
cron.daily
is managed by Anacron – there's no Anacron on the system in which case it falls back to Cron. You can also see that in yourcrontab
file where it only runs thecron.daily
directory if/usr/sbin/anacron
doesn't exist. So you're likely looking in the wrong place. – David Foerster Jan 14 '17 at 19:58