debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 23 Apr 2014 18:17:42 +0200
changeset 9691 b9ca1551f14b
parent 6917 e080e7465ac4
permissions -rw-r--r--
[services] catch missing group early in register_user Better an assertion than a rql syntax error for such a programming error.

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