debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 31 Aug 2012 13:19:39 +0200
branchstable
changeset 8533 73469aa94afe
parent 6917 e080e7465ac4
permissions -rw-r--r--
[hooks/syncschema] do not crash on DROP of an already dropped index/... (closes #2465393)

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