debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 15 May 2012 10:57:14 +0200
changeset 8404 3dcb117fb3b0
parent 0 b97547f5f1fa
permissions -rw-r--r--
[db-api] fix typo leading to crash on client connection (config has no translations). Closes #2357044

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