<div dir="ltr"><div>Thanks for the report.  I wasn't aware of this issue.</div><div><br></div><div>It seems the "start" and "stop" arguments are now deprecated. Roger Leigh announced this debian-devel.</div>

<div><br></div><div>    <a href="http://lists.debian.org/debian-devel/2013/05/msg01109.html">http://lists.debian.org/debian-devel/2013/05/msg01109.html</a></div><div><br></div><div>We should go with the flow and stop using "start" and "stop". Here's the postinst code that needs to be changed.</div>

<div><br></div><div><div><div>    # Automatically added by dh_installinit</div><div>    if [ -x "/etc/init.d/resolvconf" ]; then</div><div>            update-rc.d resolvconf start 38 S . stop 89 0 6 . >/dev/null || exit $?</div>

<div>    fi</div><div>    # End automatically added section</div></div></div><div><br></div><div>This arises from the following line in debian/rules.</div><div><br></div><div>    dh_installinit --no-start -- start 38 S . stop 89 0 6 .</div>

<div><br></div><div>I see that Roger Leigh has opened a report (#717592) against debhelper asking that dh_installinit not pass through "start" and "stop".  But we shouldn't rely on this.</div><div>

<br></div><div>I guess the debian/rules line should be simply the following.</div><div><br></div><div>    dh_installinit --no-start</div><div><br></div><div>-- </div><div>Thomas</div><div><br></div><div><br></div></div>