summaryrefslogtreecommitdiff
path: root/autoscripts/prerm-init-norestart
blob: 9b63174811895524939fe2edaa38c0e70488e4b3 (plain)
1
2
3
4
5
6
7
if [ -x "/etc/init.d/#SCRIPT#" ] && [ "$1" = remove ]; then
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d #SCRIPT# stop || #ERROR_HANDLER#
	else
		/etc/init.d/#SCRIPT# stop || #ERROR_HANDLER#
	fi
fi