Don't start by default on debian.

This makes the behavior consistent on debian and redhat.
This commit is contained in:
Mark Stemm 2016-05-09 17:17:39 -07:00
parent a787dc84d5
commit 58d730c62a

View File

@ -7,10 +7,3 @@ if [ -x "/etc/init.d/$NAME" ]; then
update-rc.d $NAME defaults >/dev/null
fi
if [ -x "/etc/init.d/$NAME" ]; then
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d $NAME start || exit $?
else
/etc/init.d/$NAME start || exit $?
fi
fi