debian/cubicweb-twisted.prerm
author Denis Laxalde <denis.laxalde@logilab.fr>
Mon, 14 Mar 2016 15:38:03 +0100
changeset 11184 2a7b98d91736
parent 0 b97547f5f1fa
permissions -rw-r--r--
[testlib] Import nocoverage from logilab.common.testlib This depends on a change in logilab-common 1.2.0

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