debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 03 Mar 2011 16:05:34 +0100
branchstable
changeset 7035 8d2cf36bd79d
parent 0 b97547f5f1fa
permissions -rw-r--r--
[c-c db-check] factorize code by introducing notify_fixed dumb function

#! /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