Es wird die neue Version ausgeführt, und bei jeder Ausführung von cron werden die von der crontab zwischengespeicherten Befehle wiederholt, nicht jedoch das "Ergebnis" dieser Befehle.
Wenn Sie also das Skript geändert haben, aber nicht die eigentliche Crontab selbst, wird das neue Skript jedes Mal ausgeführt.
Wenn Sie die Crontab geändert haben (dh wie oft sie ausgeführt wird, den Pfad zum Skript usw.), müssen Sie sie anrufen crontab
, damit sie diese Informationen erneut lesen kann. Andernfalls prüft cron die Änderungen anhand der modtime oder mithilfe von ionotify, wie auf der Manpage:
There are two ways how changes in crontables are checked. The first method is checking the modtime of a file. The second method is using the inotify support. Using of inotify is logged in the /var/log/cron log after the daemon is started. The inotify support checks for changes in all crontables and accesses the hard disk only when a change is detected. When using the modtime option, Cron checks its crontables' modtimes every minute to check for any changes and reloads the crontables which have changed. There is no need to restart Cron after some of the crontables were modified. The modtime option is also used when inotify can not be initialized.