debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 15 Sep 2014 10:06:07 +0200
changeset 9996 65bb21409292
parent 0 b97547f5f1fa
permissions -rw-r--r--
[server] hold connection to the db in tx_actions We can be called without a cnxset (e.g. from repoapi).

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