Blog
How to debug a broken cron job
I just fixed a broken cron job. It turned out it was a PATH issue. By default cron doesn't have /usr/local stuff in the PATH. Tips on how to debug cron: change the schedule for …
Topic
2 matching pages
Blog
I just fixed a broken cron job. It turned out it was a PATH issue. By default cron doesn't have /usr/local stuff in the PATH. Tips on how to debug cron: change the schedule for …
Blog
Let's say you have the following program: cat>example.py<<'EOF' #!/usr/bin/python import time while True: print 'hello world' time.sleep(1) EOF chmod +x ./example.py If …