debian/cubicweb-twisted.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 08 Jan 2013 15:53:22 +0100
branchstable
changeset 8638 9f95c2368b8b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[ldaputils,ldapparser] correctly compute "deleted" users (closes #2542083) * in ldaputils.py, removal of an unneeded method (checking existence of an object in the ldap, but not using the configuration filters) * in the ldapparser, memoize the (filtered) search so as to serve both .process and .is_deleted * add a non regression test for the 'user-filter' source config entry + deletion

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