summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init
blob: 8128cd96fcc641b7d959e6df26422334d36deb60 (plain)
1
2
3
4
5
6
7
8
if [ -x "/etc/init.d/#SCRIPT#" ]; then
	update-rc.d #SCRIPT# #INITPARMS# >/dev/null
	if [ -x /usr/sbin/invoke-rc.d ]; then
		invoke-rc.d #SCRIPT# start || #ERROR_HANDLER#
	else
		/etc/init.d/#SCRIPT# start || #ERROR_HANDLER#
	fi
fi