summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-norestart-invoke
blob: be1751c8fae1f3727b0b0ed5c20b72708527098a (plain)
1
2
3
4
5
6
7
8
if [ -x "/etc/init.d/#SCRIPT#" ]; then
	update-rc.d #SCRIPT# #INITPARMS# >/dev/null
	if [ "$1" = "configure" ]; then
		if [ -z "$2" ] || [ "$2" = "<unknown>" ]; then
			invoke-rc.d #SCRIPT# start
		fi
	fi
fi