On Fri, Mar 14, 2008 at 10:43:31AM -0400, Stuart VanZee wrote:
> I have a python script that I have written that uses
> the GnuPGInterface module to encrypt and sign some
> files. It works great when I run it from a command
> prompt but when I set it to run via cron it errors
> out. Here is a copy of the traceback:
<snip>
Stuart,
Try putting this in your crontab:
x y * * * env PATH=${PATH}:/usr/local/sbin:/usr/local/bin
/usr/local/sbin/your.py
The default crontab PATH does not include the local s?bin directories.
-ME