debian/cubicweb-server.prerm
author Christophe de Vienne <christophe@unlish.com>
Fri, 19 Sep 2014 13:08:26 +0200
changeset 10060 08dc10ef9ab1
parent 0 b97547f5f1fa
permissions -rw-r--r--
Accept '==' operator in cubes dependencies '==' is the operator used in the python dependencies specifications. See PEP 440 http://legacy.python.org/dev/peps/pep-0440/#version-specifiers Using the same operator in cubes dependencies allow to make setuptools handle the cubes dependencies while keeping cubicweb happy about the dependencies. Closes #4375144

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