debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 09 Jun 2010 14:44:45 +0200
branchstable
changeset 5703 24ca7615379b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[security] consider any rql expression refering to X while X is being created as satisfied

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