debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 15 May 2012 10:57:14 +0200
changeset 8404 3dcb117fb3b0
parent 6917 e080e7465ac4
permissions -rw-r--r--
[db-api] fix typo leading to crash on client connection (config has no translations). Closes #2357044

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