summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init
blob: 535b40c388acb7b30591e9fc73d4ab4e440ffe95 (plain)
1
2
3
4
5
6
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
	if [ -x "/etc/init.d/#SCRIPT#" ]; then
		update-rc.d #SCRIPT# #INITPARMS# >/dev/null
		invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# start || #ERROR_HANDLER#
	fi
fi