Error post-processing downloaded files from Sickbeard

Come up with a useful post-processing script? Share it here!
Post Reply
josh4trunks
Newbie
Newbie
Posts: 30
Joined: August 25th, 2011, 10:32 am

Error post-processing downloaded files from Sickbeard

Post by josh4trunks »

Code: Select all

env: python: No such file or directory
http://www.flickr.com/photos/66773845@N05/6080068272/
I get this on files Sickbeard automatically downloads. I had this working correctly but for some reason it stopped post-processing (I believe when I updated sab to 0.6.8 ). I tried a fresh install to sab 0.6.8 and sickbeard (using instructions below) and still get the error. Not sure if this is a sab connecting to sickbeard problem, python permission problem, or something else. Any help would be greatly appreciated.

autoProcessTV.cfg

Code: Select all

[SickBeard]
host=127.0.0.1
port=8081
username=USER
password=PASS
web_root=
http://www.flickr.com/photos/66773845@N05/6079565025/
http://www.flickr.com/photos/66773845@N05/6080112178/
http://www.flickr.com/photos/66773845@N05/6079588119/

My System
FreeNAS 8.0.1
Incomplete downloads on /mnt/HDD (ZFS Filesystem)
Completed downloads / post-processed on /mnt/RAID - a RAIDZ (ZFS Filesystem)
See this post to see my exact install instructions
https://sourceforge.net/apps/phpbb/free ... =30#p54313
josh4trunks
Newbie
Newbie
Posts: 30
Joined: August 25th, 2011, 10:32 am

Re: Error post-processing downloaded files from Sickbeard

Post by josh4trunks »

Fixed it...
changed first line of sabToSickbeard.py to

Code: Select all

#!/usr/bin/env /usr/local/bin/python

Code: Select all

#!/usr/bin/env python
worked when I sshed in as root but I have no idea which user is actually running all these things and if they get forwarded to /usr/local/bin
Post Reply