debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 03 Mar 2010 18:30:25 +0100
changeset 4766 162b2b127b15
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] get a chance to get proper garbage collection when running pytest on whole cw

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