debian/cubicweb-ctl.prerm
author Rémi Cardona <remi.cardona@free.fr>
Sun, 27 Jul 2014 14:57:51 +0200
changeset 10313 ae9e23cf8790
parent 6917 e080e7465ac4
permissions -rw-r--r--
[rset] Deprecate the 'encoded' argument to ResultSet.printable_rql() It's hardly used at all, and when used inside CubicWeb, it's only set as false. Better make sure that this function always returns a proper unicode string and let the caller handle conversion on its own.

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