Package Details: sabnzbd 4.3.1-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: 269
Popularity: 0.22
First Submitted: 2007-11-09 16:21 (UTC)
Last Updated: 2024-05-05 15:16 (UTC)

Required by (14)

Sources (5)

Latest Comments

« First ‹ Previous 1 .. 59 60 61 62 63 64

<deleted-account> commented on 2010-05-04 19:33 (UTC)

I always have the problem that when i use a username and password to login, the daemon either doesnt start or doesnt stop using the default scripts (when you do add the username and pass it doesnt start if you dont add it it doesnt stop). I manually apply the changes to the scripts everytime but maybe you can update the package. Below you can see what i changed in the scripts. conf.d SABNZBD_USER="sabnzbd" SABNZBD_CONF="/opt/sabnzbd/sabnzbd.ini" # Put the session key from Config > General here SABNZBD_KEY="0ed6ebaab38d00260213f31ee8ff7b2e" # Set to the IP and port sabnzbd is listening on # This is needed to stop sabnzbd properly # If you use a username and password to access sabnzbd use "user:pass@ip" SABNZBD_IP="127.0.0.1" SABNZBD_PORT="8080" SABNZBD_USPW="user:pass@" init #!/bin/bash . /etc/rc.conf . /etc/rc.d/functions . /etc/conf.d/sabnzbd case "$1" in start) stat_busy "Starting SABnzbd" if [ -f /var/run/daemons/sabnzbd ]; then echo -n "Sabnzbd is already running as a daemon!" stat_fail else su - $SABNZBD_USER -c "python /opt/sabnzbd/SABnzbd.py -f $SABNZBD_CONF -s $SABNZBD_IP:$SABNZBD_PORT -d" -s /bin/sh if [ $? -gt 0 ]; then stat_fail else add_daemon sabnzbd stat_done fi fi ;; stop) stat_busy "Stopping SABnzbd" curl -f http://$SABNZBD_USPW$SABNZBD_IP:$SABNZBD_PORT/sabnzbd/shutdown?session=$SABNZBD_KEY &> /dev/null if [ $? -gt 0 ]; then stat_fail else rm_daemon sabnzbd stat_done fi ;; restart) $0 stop sleep 1 $0 start ;; *) echo "usage: $0 {start|stop|restart}" esac exit 0

<deleted-account> commented on 2010-05-04 13:14 (UTC)

Thanks Revelation60 and farhany. Used these files with updated PKGBUILD from Revelation and 5.2 install went great. No issues.

farhany commented on 2010-05-04 04:13 (UTC)

New build coming up soon as I get my virtual arch installation working.

Revelation60 commented on 2010-05-03 10:13 (UTC)

Here is the PKGBUILD for the latest version: http://aur.pastebin.com/RJhTu7Tg. Remember to completely remove the sabnzbd dir before installing!