debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 07 Apr 2014 12:03:06 +0200
changeset 9667 4714d4afd4ea
parent 6917 e080e7465ac4
permissions -rw-r--r--
[devtools] add 'shell' method to RepoAccess, deprecate CubicWebTC's Lets us control the connection's lifetime.

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