debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 04 Dec 2012 13:41:20 +0100
branchstable
changeset 8616 820cb9cee702
parent 6917 e080e7465ac4
permissions -rw-r--r--
[migration] fix crash when adding a new meta relation type. Closes #2532483

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