Package Details: sabnzbd 4.3.3-1

Git Clone URL: https://aur.archlinux.org/sabnzbd.git (read-only, click to copy)
Package Base: sabnzbd
Description: A web-interface based binary newsgrabber with NZB file support
Upstream URL: http://www.sabnzbd.org
Keywords: network usenet
Licenses: GPL
Submitter: esh
Maintainer: fryfrog
Last Packager: fryfrog
Votes: 270
Popularity: 0.61
First Submitted: 2007-11-09 16:21 (UTC)
Last Updated: 2024-08-21 15:57 (UTC)

Latest Comments

« First ‹ Previous 1 .. 54 55 56 57 58 59 60 61 62 63 64 Next › Last »

<deleted-account> commented on 2010-11-10 12:19 (UTC)

Ok, I've fixed stopping the daemon... /etc/rc.d/sabnzbd needs to be edited so that it's at follows... stop) stat_busy "Stopping SABnzbd" curl -f "$SABNZBD_PROTOCOL://$SABNZBD_USPW$SABNZBD_IP:$SABNZBD_PORT/sabnzbd/api?mode=shutdown&apikey=$SABNZBD_KEY" &> /dev/null if [ $? -gt 0 ]; then stat_fail else pkill -f "python2 /opt/sabnzbd/SABnzbd.py" rm_daemon sabnzbd stat_done fi ;; All i've done is add the line: pkill -f "python2 /opt/sabnzbd/SABnzbd.py"

<deleted-account> commented on 2010-11-10 11:39 (UTC)

Hi, I'd like to mention that the stop and restart commands for the daemon aren't actually stopping the sabnzbd process.

Revelation60 commented on 2010-11-07 22:15 (UTC)

Yeah, of course. I accidentally used an old version of the PKGBUILD which didn't have that yet and I overlooked. Thanks!

<deleted-account> commented on 2010-11-07 21:59 (UTC)

Wouldn't it be relevant to change the dependencies in the PKGBUILD from python to python2?

Revelation60 commented on 2010-11-07 21:02 (UTC)

I've updated the package to 0.5.5 and I've added the sed command. I had my doubts at first whether to change the package itself, but it seems like we don't really have a choice.

mhellwig commented on 2010-10-29 15:54 (UTC)

@MyWorld: well yeah, I already did, I'm just saying the package should be fixed ..

MyWorld commented on 2010-10-29 08:17 (UTC)

If you get the python error: sabnzbd File "/opt/sabnzbd/SABnzbd.py", line 20 print "Sorry, requires Python 2.4 or higher." Just amend the startup script: nano /usr/bin/sabnzbd Change python /opt/sabnzbd/SABnzbd.py -f $HOME/.sabnzbd.ini "$@" To python2 /opt/sabnzbd/SABnzbd.py -f $HOME/.sabnzbd.ini "$@"

mhellwig commented on 2010-10-28 14:11 (UTC)

exactly .. as in: /usr/bin/sabnzbd calls python instead of python2 also I'm not sure about all the .py-files in /opt/sabnzbd .. all the ones that have a #!/usr/bin/python line at the top should be #!/usr/bin/python2 no? would be a simple sed in the PKGBUILD ..

psychedelicious commented on 2010-10-28 03:42 (UTC)

please patch the sabnzbd file to use python2 too. I run sabnzbd by running the command 'sabnzbd' in a terminal. Thanks.