summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-restart
blob: ba4b3a026c014d2926a5779386192fbec66d3423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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