debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 22 Jun 2012 15:57:05 +0200
branchstable
changeset 8453 f441056a2b61
parent 6917 e080e7465ac4
permissions -rw-r--r--
[packaging] bump rql dependency to 0.29 (closes #2410042) Needed for add_eid_restriction with 4 args, usage of which was introduced in changeset aed065b97f12 (refactor entity fetch_rql method to use a RQL syntax tree instead of RQL strings)

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