debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 11 Jul 2014 16:44:42 +0200
changeset 9882 4db650d79e32
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] Fix the query-log-file test Testing this functionality in a CubicWebTC is awkward because the wrapping happens in handle_request, which tests basically bypass (they call core_handle directly, and do their own magic for linking the request with a cnx). The test method worked when ran on its own, but not together with the rest of the test class. So use a CubicWebServerTC instead, which goes through the whole stack.

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