From 58d730c62ab8664b04a8e049f3cd61fb46af664e Mon Sep 17 00:00:00 2001 From: Mark Stemm Date: Mon, 9 May 2016 17:17:39 -0700 Subject: [PATCH] Don't start by default on debian. This makes the behavior consistent on debian and redhat. --- scripts/debian/postinst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/scripts/debian/postinst b/scripts/debian/postinst index b90add76..0084f213 100755 --- a/scripts/debian/postinst +++ b/scripts/debian/postinst @@ -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