debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 11 Oct 2013 18:00:34 +0200
changeset 9288 823cf14bcc37
parent 6917 e080e7465ac4
permissions -rw-r--r--
[wsgi] also provide an example using werkzeug (if available) Related to #3005509.

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