debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 03 Dec 2014 15:24:47 +0100
changeset 10093 516a44ae2cc9
parent 6917 e080e7465ac4
permissions -rw-r--r--
[book] document __unique_together__, remove bad RQLUniqueConstraint example RQLUniqueConstraint should be avoided whenever possible. Related to #3753250.

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