summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-norestart-invoke
blob: 440e8c7851fd89f04903406e75fde98c2ca7018b (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" -o "$2" = "<unknown>" ]; then
			invoke-rc.d #SCRIPT# start
		fi
	fi
fi