summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-restart
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postinst-init-restart')
-rw-r--r--autoscripts/postinst-init-restart13
1 files changed, 13 insertions, 0 deletions
diff --git a/autoscripts/postinst-init-restart b/autoscripts/postinst-init-restart
new file mode 100644
index 00000000..ba4b3a02
--- /dev/null
+++ b/autoscripts/postinst-init-restart
@@ -0,0 +1,13 @@
+if [ -x "/etc/init.d/#SCRIPT#" ]; then
+ update-rc.d #SCRIPT# #INITPARMS# >/dev/null
+ if [ -n "$2" ]; then
+ _dh_action=restart
+ 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
+fi