Cronjob @reboot

Um beim Systemstart gewisse Jobs automatisch auszuführen muss das Schlüsselwort @reboot anstatt der normalen Notation (15 6 * * *) verwendet werden. Ausserdem scheint es nötig zu sein, dass die kompletten Pfade zu einem Befehl bzw. /bin/bash vor ein Shellscript gestellt wird, damit die Ausführung auch klappt. Hier ein Beispiel eines Befehls und eines Scripts.

@reboot /bin/systemctl status httpd.service  > /path/to/logs/apache.log_date +\%Y\%m\%d_\%H\%M & 2>&1
@reboot /bin/bash /path/to/scripts/script.sh > /path/to/logs/script.log_date +\%Y\%m\%d_\%H\%M & 2>&1