Quote:
Originally Posted by Rich Thomson
Resolved - 10.2 does not support the @reboot option.
|
Then it must be
cronie or something as Vixie-cron does support it. BTW you could probably emulate "@reboot" using /etc/rc.d/rc.local by adding a line
Code:
/usr/lib/cron/run-crons &
if you want to run all cronjobs (though that would be odd) or
if you just want to run a single job or
Code:
/usr/bin/at -f /path/to/jobfile now
if you have the "at" service running at boot and prefer handing it off that way. If you use /etc/rc.d/rc.local across different SuSE versions and releases then you could prefix a check so this only affects 10.2 this way
Code:
grep -q -m1 '.10\.2' /etc/issue /etc/*release && /usr/bin/at -f /path/to/jobfile now
HTH