debian/cubicweb-twisted.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Mon, 25 Feb 2013 11:18:14 +0100
changeset 8701 d94d3a3ba586
parent 0 b97547f5f1fa
permissions -rw-r--r--
[cwvreg] complete cw.web.uicfg cleanup callback (closes #2718217) 1dd655788ece introduced insufficient backward compat support When cubes directly import uicfg from cubicweb.web (or uihelper) this also creates a reference in the parent cubicweb.web namespace. This must be cleaned up as reloaded cubes will take back this reference and the old versions of its appobjects.

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