debian/cubicweb-ctl.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Mon, 17 Feb 2014 11:27:25 +0100
changeset 9815 12e6d911027a
parent 6917 e080e7465ac4
permissions -rw-r--r--
[views] Rewrite cw.utils.formContents() with jQuery (closes #3747244) Use jQuery's serializeArray() method instead. Just keep a bit of compatibility with FCKEditor...

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