summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-restart
blob: d52182b4f21f52d81ca6b5710403e970323dc7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
	if [ -z "${DPKG_ROOT:-}" ] && [ -x "/etc/init.d/#SCRIPT#" ]; then
		update-rc.d #SCRIPT# #INITPARMS# >/dev/null
		if [ -n "$2" ]; then
			_dh_action=restart
		else
			_dh_action=start
		fi
		invoke-rc.d #INVOKE_RCD_PARAMS##SCRIPT# $_dh_action || #ERROR_HANDLER#
	fi
fi