debian/cubicweb-twisted.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 10 Dec 2015 17:50:46 +0100
changeset 10964 bf381a894cd3
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] Fix fd leak in tests

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