debian/cubicweb-server.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 27 Jun 2013 11:19:17 +0200
changeset 9077 55a88fbfd39c
parent 0 b97547f5f1fa
permissions -rw-r--r--
[connection] move relation cache method to Connection needed for execute (and need execute themself...)

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