debian/cubicweb-twisted.prerm
author Denis Laxalde <denis.laxalde@logilab.fr>
Wed, 12 Oct 2016 11:09:08 +0200
changeset 11714 73201a210007
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] Make cubicweb/test/unittest_utils.py flake8-clean

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