debian/cubicweb-ctl.prerm
author Florent Cayré <florent.cayre@logilab.fr>
Wed, 04 Jul 2012 17:56:46 +0200
branchstable
changeset 8452 1ad42383a9ec
parent 6917 e080e7465ac4
permissions -rw-r--r--
[rql security] fix rql bug when using yams inheritance and read permissions (closes #2410156) problems occurings when querying using is_instance_of while a subtype has some permissions not shared by the parent type

#! /bin/sh -e
 
case "$1" in
    purge)
	rm -rf /etc/cubicweb.d/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0