summaryrefslogtreecommitdiff
path: root/autoscripts/prerm-init
blob: 014fa9a082834de74e3abc5287b61c28567b93e1 (plain)
1
2
3
4
5
6
7
if [ -x "/etc/init.d/#SCRIPT#" ]; then
	if [ -x /usr/sbin/invoke-rc.d ] ; then
		invoke-rc.d #SCRIPT# stop || #ERROR_HANDLER#
	else
		/etc/init.d/#SCRIPT# stop || #ERROR_HANDLER#
	fi
fi