debian/cubicweb-ctl.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Fri, 12 Sep 2014 14:10:03 +0200
changeset 9951 8cdcbf3f4fd0
parent 6917 e080e7465ac4
permissions -rw-r--r--
[schema] add utility function to build a CubicWebSchema from a namespace Will be useful for testing computed attributes and relations.

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