debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 03 Dec 2014 15:24:47 +0100
changeset 10093 516a44ae2cc9
parent 0 b97547f5f1fa
permissions -rw-r--r--
[book] document __unique_together__, remove bad RQLUniqueConstraint example RQLUniqueConstraint should be avoided whenever possible. Related to #3753250.

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