summaryrefslogtreecommitdiff
path: root/autoscripts/prerm-init
blob: 96d37558e844932ef589e695b31115a402866408 (plain)
1
2
3
4
5
6
7
if [ -x "/etc/init.d/#SCRIPT#" ]; 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