-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Setting Up Cron Job
Alex Luecke edited this page Feb 17, 2015
·
4 revisions
As per ticket 957:
crouton doesn't use upstart, so you need to run crond explicitly, probably from the chroot's /etc/rc.local. Look inside /etc/init/cron for the commands needed to launch crond.
So edit /etc/rc.local
and add the following line before exit 0
:
exec cron
This will start the cron
process as root for the system. Being the case, any cron jobs added at the user level will not work (ie anything added using the command crontab -e
). For this reason you will have to add crons to the /etc/crontab
file.