debian/cubicweb-twisted.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 17 Mar 2015 15:21:29 +0100
changeset 11206 6454ee8f2137
parent 0 b97547f5f1fa
permissions -rw-r--r--
[connection] remove a dead counter Related to #1381328.

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