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 .. 49 50 51 52 53 54 55 56 57 58 59 .. 64 Next › Last »

Lucky commented on 2011-08-14 09:59 (UTC)

@potatoe Ahh this was my fault, because i forgot remove the post_upgrade (only for testing) line at the end of sabnzbd.install. Also added SABNZBD_ARGS, have fun and please test it. http://hydra.lky.cc/lucky/pkgbuild_sources/sabnzbd/sabnzbd-0.6.8-1.src.tar.gz

<deleted-account> commented on 2011-08-14 02:15 (UTC)

sabnzbd.install throws an error on a fresh install -- post_upgrade's "chown -R sabnzbd" seems to be running before post_install's "useradd sabnzbd" because it complains about "chown: invalid user: 'sabnzbd'". Also, would it be possible to add a SABNZBD_ARGS variable to conf.d/sabnzbd which gets appended to the command line for sabnzbd in the init script? Most other init scripts with a conf.d file do seem to provide a PROGRAMNAME_ARGS option to pass custom command-line options to the daemon. I'd like to make sabnzbd start paused, which I believe is only possible via command-line options, not config files.

Lucky commented on 2011-08-06 10:00 (UTC)

Ahhh Revelation60 thanks for the info, i will change it.

Revelation60 commented on 2011-08-06 09:54 (UTC)

Thanks, Lucky! I've adapted most of your changes. Note that your version still had the old python-feedparser dependency (should be python2-feedparser).

Lucky commented on 2011-08-06 09:33 (UTC)

@Revelation60 I clean up your pkg and add more variables. maybe you want to merge something. http://hydra.lky.cc/lucky/pkgbuild_sources/sabnzbd/sabnzbd-0.6.7-1.src.tar.gz If you upload it to AUR and Sources are wrongly displayed replace pkgname="${_pkgname,,}" with pkgname=sabnzbd in the PKGBUILD @Amarant I added user/group support to post_upgrade, change /etc/conf.d/sabnzbd to your USER/GROUP combination. defaults: SABNZBD_USER="sabnzbd" SABNZBD_GROUP="sabnzbd"

<deleted-account> commented on 2011-08-04 19:16 (UTC)

0.6.7 is out. Works fine.

<deleted-account> commented on 2011-08-02 14:48 (UTC)

I don't run sabnzbd under the default sabnzbd user, so every time this package is updated I have to manually chown -R all the files. In order to fix this I would like the username that is specified in /etc/conf.d/sabnzbd to be used in the post_upgrade hook. So the post_upgrade function in sabnzbd.install would look like this: post_upgrade() { SABNZBD_USER=sabnzbd . /etc/conf.d/sabnzbd chown -R $SABNZBD_USER:$SABNZBD_USER /opt/sabnzbd }

<deleted-account> commented on 2011-07-28 14:07 (UTC)

0.6.6 is out.

gee commented on 2011-07-24 01:07 (UTC)

In case anyone is interested here's my systemd service file: [Unit] Description=NZB grabber [Service] Type=simple ExecStart=/usr/bin/sabnzbd Restart=always User=sabnzbd Group=sabnzbd [Install] WantedBy=multi-user.target It works just fine!