debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 20 Jul 2015 12:37:47 +0200
changeset 10539 08c5d26417f6
parent 0 b97547f5f1fa
permissions -rw-r--r--
[server] stick a _cw on internal connnection's user Entity._fetch_restrictions goes through user._cw.vreg :( Closes #5705769

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