debian/cubicweb-twisted.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 20 Mar 2014 15:42:23 +0100
changeset 9669 283503f58400
parent 0 b97547f5f1fa
permissions -rw-r--r--
[cwconfig] Remove useless 'ui-cube' configuration option (closes #3728904) The mechanism introduced could never actually be used as it brings dependency loops to the cube graph. Just get rid of it. This reverts commit 4032499c701e.

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