debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 22 Apr 2011 16:24:56 +0200
changeset 7249 86bbf174e463
parent 6917 e080e7465ac4
permissions -rw-r--r--
[facets] fix unicode encode error; closes #1625112

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