Answers:
看/etc/crontab
它应该在06:25运行。
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
大约上午7:35,但是确切的时间取决于蟒蛇。
默认情况下,cron将/etc/cron.daily作业的运行委托给anacron。/ etc / crontab包含以下行:
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
但这定义了如果未安装 anacron的行为
安装anacron后,cron.daily作业的运行由/ etc / anacrontab中的条目控制:
1 5 cron.daily nice run-parts --report /etc/cron.daily
表示每天执行一次这些作业,延迟5分钟。
anacron本身由cron运行,如文件/etc/cron.d/anacron中所指定,该文件在7:30 am运行anacron。