debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 05 Feb 2014 15:50:36 +0100
branchstable
changeset 9524 c4581bc582e1
parent 6917 e080e7465ac4
permissions -rw-r--r--
[uilib] allow canvas tags in the html cleaner Used by the iprogress cube. Closes #3524254.

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