debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Wed, 04 Jun 2014 15:46:16 +0200
changeset 9860 e24bf60428d3
parent 0 b97547f5f1fa
permissions -rw-r--r--
[tests/datafeed] use the new connection api (a small leftover) Test assertions get indented because of self.session -> scoped cnx.

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