Leider werden die scripte in cron.daily und cron.weekly immer erst um 7:30 Uhr ausgeführt.
Unabhängig von der in der crontab eingestellten Uhrzeit.
In der syslog finde ich folgendes
Code: Alles auswählen
Jan 27 21:00:01 lagfserv /USR/SBIN/CRON[13734]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ))
..
Jan 27 22:00:01 lagfserv /USR/SBIN/CRON[13986]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ))
...
Jan 28 04:00:01 lagfserv /USR/SBIN/CRON[15544]: (root) CMD (test -x /usr/sbin/cron-apt && /usr/sbin/cron-apt)
....
Jan 28 07:30:01 lagfserv /USR/SBIN/CRON[16419]: (root) CMD (test -x /etc/init.d/anacron && /usr/sbin/invoke-rc.d anacron start >/dev/null)
Jan 28 07:30:01 lagfserv anacron[16440]: Anacron 2.3 started on 2012-01-28
Jan 28 07:30:01 lagfserv anacron[16440]: Will run job `cron.daily' in 5 min.
Jan 28 07:30:01 lagfserv anacron[16440]: Jobs will be executed sequentially
Jan 28 07:35:01 lagfserv anacron[16440]: Job `cron.daily' started
Jan 28 07:35:01 lagfserv anacron[16465]: Updated timestamp for job `cron.daily' to 2012-01-28
Warum?
PS: an der Zeitzone und eingestellten Uhrzeit liegt es scheinbar nicht
Hier meine crontab
Code: Alles auswählen
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
21 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
22 0 * * 4 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
0 5 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#
mfg.... rubbeldekatz