debian/cubicweb-twisted.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Tue, 25 Jun 2013 19:50:16 +0200
changeset 9096 9d1b5f07d9ca
parent 0 b97547f5f1fa
permissions -rw-r--r--
[ClientConnection] directly use the Connection object to access the database Now that Connection are a full featured standalone object we can directly reference and use it in the ClientConnection instead of using the session. The session object is kept around for a while to perform various utility role.

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