debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 08 Oct 2013 10:46:06 +0200
changeset 9261 1dfe62a9da50
parent 6917 e080e7465ac4
permissions -rw-r--r--
[entity] give a default reasonnable __eq__ and __hash__ to Entity Using the eid. Closes #3179560.

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