debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 07 Apr 2014 14:15:35 +0200
changeset 9632 c60c8dec0e0e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[hooks/notification] Fix indentation Follow-up for changeset 1b8552265f3b "[hooks/notification] use a cnx not a session"

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