debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 18 Aug 2009 16:05:50 +0200
branchstable
changeset 2909 e695b7b0359d
parent 0 b97547f5f1fa
permissions -rw-r--r--
[hooks] say which are the states (again)

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