debian/cubicweb-twisted.prerm
author Rémi Cardona <remi.cardona@free.fr>
Tue, 15 Sep 2015 12:51:27 +0200
changeset 10616 f454404733c1
parent 0 b97547f5f1fa
permissions -rw-r--r--
Port cw.Binary to io.BytesIO And add plenty of tests too!

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