]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/prerm-init-norestart
dh_gconf: Remove postrm fragment that handled schema migration from /etc to /usr...
[debhelper.git] / autoscripts / prerm-init-norestart
1 if [ -x "/etc/init.d/#SCRIPT#" ] && [ "$1" = remove ]; then
2         if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
3                 invoke-rc.d #SCRIPT# stop || #ERROR_HANDLER#
4         else
5                 /etc/init.d/#SCRIPT# stop || #ERROR_HANDLER#
6         fi
7 fi