debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 13 Mar 2015 16:10:29 +0100
changeset 10333 569324f890d7
parent 0 b97547f5f1fa
permissions -rw-r--r--
[book] remove dbapi documentation Move some still-relevant doc related to the RQL connection API to the 'sessions' section. It might make sense to move this back outside of the "Repository development" chapter at some point since this is relevant in other contexts.

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