ich möchte die Crontab ändern.
Im Moment sieht sie so aus:
# m h dom mon dow user command
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 )
Und wenn ich sie dahin änder:
17 * * * * root cd / && run-parts --report /etc/cron.hourly
5 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
15 0 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
25 0 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
Gehe ich jetzt recht in der Annahme das die cron.daily scripte immer um 5 Minuten nach 0 Uhr ausgeführt werden???
Nimmt er 0 als Mitterancht an?
Wie lasse ich cron die geänderten Daten einlesen?
[update]
/etc/init.d/cron reload ... sollte ja die Änderungen einlesen
![Wink :wink:](./images/smilies/icon_wink.gif)