debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 04 Dec 2014 11:37:18 +0100
changeset 10118 78ab2b14048a
parent 6917 e080e7465ac4
permissions -rw-r--r--
[utils] provide a function to return an admin connection from an appid Closes #4723580.

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