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