I have a python script "start.py" that executes well from the command line. There is only one statement in it (print "hello"). EDIT: start.py contains also a working interpreter directive in the first line.

As soon as I run the script from a cron job, every time it fires there is a message in syslog:

Jun  7 02:57:01 mit CRON[23275]: Module is unknown

I tried already to add PATH and PYTHONPATH information to the cron file:

$ cat /etc/cron.d/my_cron
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHONPATH=/usr/lib/python2.6:/usr/lib/python2.6/plat-linux2:/usr/lib/python2.6/lib-tk:/usr/lib/python2.6/lib-old:/usr/lib/python2.6/lib-dynload:/usr/lib/python2.6/dist-packages:/usr/lib/pymodules/python2.6:/usr/lib/pymodules/python2.6/gtk-2.0:/usr/local/lib/python2.6/dist-packages
* * * * * mit /home/mit/dev/start.py

I found several answers and solutions that seem the same but nothing helped me. What am I missing?

link|improve this question

It could be a file ownership or permission issue. – Cole Jun 7 '11 at 1:06
why do you even need 'mit' in your crontab? – Mike Pennington Jun 7 '11 at 1:06
1  
Please post the contents of your script...the first line needs to specify your interpreter, e.g. #!/usr/bin/python – AJ. Jun 7 '11 at 1:07
1  
That error message sounds more like pam(7) than Python or cron(8). What is in your /etc/pam.d/cron file? Does it require modules that don't exist? – sarnold Jun 7 '11 at 1:08
1  
Looks like a PAM error. Have you updated PAM recently? Perhaps crond needs to be restarted – gnibbler Jun 7 '11 at 1:46
show 5 more comments
feedback

2 Answers

up vote 3 down vote accepted

A recent update of PAM broke cron. Try restarting your computer (or restarting cron with sudo /etc/init.d/cron restart)

link|improve this answer
i will try. I noticed the cron script worked before, but did not execute at some point in time anymore. – mit Jun 7 '11 at 10:53
Thank you so much. A cron restart did it. : ) – mit Jun 7 '11 at 12:27
feedback

You forgot to add python in front of it.

* * * * * mit /usr/bin/python /home/mit/dev/start.py
link|improve this answer
3  
That might not be an issue if the file is chmoded to executable and it contains an interpreter directive as the first line. – AJ. Jun 7 '11 at 1:10
sorry for the incomplete posting. I had tried all combinations with or without python, also the shebang line with correct interpreter is there. the script works from the commandline when I start '/home/mit/dev/start.py' as user 'mit' – mit Jun 7 '11 at 10:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.