debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 17 Feb 2015 12:42:42 +0100
changeset 10262 5c2a4a0a8dbd
parent 6917 e080e7465ac4
permissions -rw-r--r--
[entities] return the entity itself from notification_references if the view uses a random message-id Useful for entity update notifications to reference the entity creation message.

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