debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 18 Apr 2014 14:24:52 +0200
changeset 9723 46ad7d474d3d
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] use assertNotIsInstance instead of assert_(not isinstance(...))

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