Control: found -1 1.1.6+dfsg-1 On Sun, Apr 26, 2020 at 7:01 PM Mathieu Malaterre <ma...@debian.org> wrote: > > Seems like START_DAEMON="no" is also skipped for me.
So here is what I found out: $ dget -u http://deb.debian.org/debian/pool/main/m/minidlna/minidlna_1.1.2+dfsg-1.1.dsc $ cd minidlna-1.1.2+dfsg $ grep -r START_DAEMON . ./debian/minidlna.default:START_DAEMON="yes" ./debian/minidlna.init:if [ "$START_DAEMON" != "yes" ] && [ "$1" != "stop" ]; then So the new `linux/minidlna.init.d.script.tmpl` is actually missing a portion of the old init.d script. Namely this section (quick look no test): `# Do not start the daemon if NO_START is enabled in DEFAULT if [ "$START_DAEMON" != "yes" ] && [ "$1" != "stop" ]; then log_warning_msg "$NAME: Not starting $DESC." log_warning_msg "$NAME: Disabled in $DEFAULT." exit 0 fi` but for some reason I can see reference to DAEMON_OPTS so there is something I do not understand from the OP post.