debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 29 Mar 2016 16:56:59 +0200
changeset 11226 6b0807ba056a
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] fix sorting in ExecutionPlan._check_permissions on python3 Sort lists instead of dict_items objects to get predictable results. With this change, unittest_querier.UtilsTC.test_preprocess_security passes every time instead of once in a blue moon. Closes #11759133.

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