summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-restart
diff options
context:
space:
mode:
authorSteve Langasek <steve.langasek@canonical.com>2011-01-17 01:52:12 -0800
committerJoey Hess <joey@kitenet.net>2011-01-25 16:00:19 -0400
commitab623d0bf8c2d59507f8e666253e316c76e2de90 (patch)
tree868bc80726dcf1f2d85c9b6893264d002698d757 /autoscripts/postinst-init-restart
parentaefd7af18432d793f49bfebf02a0b69e278a57c9 (diff)
dh_installinit: never call init scripts directly, only through invoke-rc.d
Diffstat (limited to 'autoscripts/postinst-init-restart')
-rw-r--r--autoscripts/postinst-init-restart6
1 files changed, 1 insertions, 5 deletions
diff --git a/autoscripts/postinst-init-restart b/autoscripts/postinst-init-restart
index ba4b3a02..35bba207 100644
--- a/autoscripts/postinst-init-restart
+++ b/autoscripts/postinst-init-restart
@@ -5,9 +5,5 @@ if [ -x "/etc/init.d/#SCRIPT#" ]; then
else
_dh_action=start
fi
- if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
- invoke-rc.d #SCRIPT# $_dh_action || #ERROR_HANDLER#
- else
- /etc/init.d/#SCRIPT# $_dh_action || #ERROR_HANDLER#
- fi
+ invoke-rc.d #SCRIPT# $_dh_action || #ERROR_HANDLER#
fi