debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 10 Oct 2013 12:40:23 +0200
branchstable
changeset 9279 0814b9dd9bf3
parent 6917 e080e7465ac4
permissions -rw-r--r--
[py3k] note about future warning on __eq__ vs __hash__ Closes #3179561.

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