Current daemon flags are:
daemon_flags="-b 0 -f ${datadir} -p ${datadir}/sabnzbd.pid"
Intention is to be:
daemon_flags="-b 0 -f ${datadir} --pidfile ${datadir}/sabnzbd.pid"
Notice "--pidfile" instead of "-p". "-p" starts the daemon paused, which
isn't desired for most people. Additionally, the entire PID option can
be omitted.
Addressed offlist by Nick Templeton <nick () nicktempleton ! com>. Diff
by me.
Tested on amd64. This update has many changes, and upgrading with items
in the queue is not supported. For more info see:
http://wiki.sabnzbd.org/introducing-1-0-0
If you do upgrade with a full queue, you will need to run: "queue repair"
to resolve any issues.
OK sthen@