Re: Automate decryption using GnuPGInterface

2005-11-30 Thread George
I have 5 python scripts I've added to cron over the past year that run correctly all the time. I double-checked the permissions and paths and everything looks good there. Here's the cron entry that I just tested with: 23 12 * * * /usr/local/bin/decrypt_test.py > /usr/local/bin/decrypt.log

Re: Automate decryption using GnuPGInterface

2005-11-30 Thread NavyJay
Are you able to run a dummy Python script using crontabs? For troubleshooting purposes, I would verify this before trying to debug my code. Check your permissions, paths, etc. Can you post your entry into cron? What exactly happens when it "blows up"? -- http://mail.python.org/mailman/listinf

Automate decryption using GnuPGInterface

2005-11-30 Thread George
Hi, Does anyone have any experience with GnuPGInterface? I'm having a problem with decrypting files through a cron job. The below job works great when I run it manually from the command line, but it blows up whenever I try to run it through cron, and I can't really figure out why. I've been tryi