CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2019/05/06 12:29:59
Modified files:
news/sabnzbd : Makefile
news/sabnzbd/pkg: sabnzbd.rc
Log message:
Fix daemon_flags in sabnznd.rc.
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.