debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 17 Dec 2015 17:14:08 +0100
changeset 11002 2973522a1924
parent 0 b97547f5f1fa
permissions -rw-r--r--
[migration] handle non-existing attribute type when adding an entity type The final type needs to be added to the schema first. Related to #7569998.

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