debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 05 Oct 2015 16:52:26 +0200
changeset 10771 a688ef1a12eb
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web/formwidgets] fix for py3k no idea why we encode that key...

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