debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 06 Mar 2014 18:41:23 +0100
branchstable
changeset 9698 737983d87497
parent 6917 e080e7465ac4
permissions -rw-r--r--
[migractions] add sanity check in rename_relation_type If the relation is still present in the fs schema, we probably shouldn't be renaming it (because it's still in use somewhere, possibly in a different cube). Closes #3608172

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