Reputation: 245
I can't get cron jobs to run properly on my ASUS Chromebox, which is running Crouton. I have followed these instructions.
The cron job is this: 30 2 * * * /home/name/daily.py
Upvotes: 1
Views: 851
Reputation: 348
Can't be certain with the info provided, but this could be as simple as the PATH
not being set correctly for cron. Keep in mind, cron doesn't source dotfiles like .bashrc
, so it won't have all the settings that your shell has. Just set the PATH
in /etc/crontab
before defining the individual cronjob.
Upvotes: 0