debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 09 Nov 2016 11:45:19 +0100
branch3.24
changeset 11813 8a04a2cb5ba4
parent 0 b97547f5f1fa
permissions -rw-r--r--
[pyramid] No more need to check CW version since it's now shipped with it

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