debian/cubicweb-server.prerm
author Alain Leufroy <alain.leufroy@logilab.fr>
Mon, 29 Apr 2013 09:47:23 +0200
changeset 8956 c81e1c463dbf
parent 0 b97547f5f1fa
permissions -rw-r--r--
fix typo in notification causing NameError introduced by: f5b40b66d36e

#! /bin/sh -e
 
case "$1" in
    remove)
	if [ -x "/etc/init.d/cubicweb-ctl" ]; then
	    invoke-rc.d cubicweb-ctl stop || true
	fi
    ;;
esac
 
#DEBHELPER#
 
exit 0