debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 15 Jan 2015 15:45:09 +0100
changeset 10182 116b24efad0e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[hooks] don't insert an owned_by relation for deleted entities If, in the same transaction, a composed entity is created and deleted, we'll have scheduled a SyncOwnersOp which would end up creating an owned_by relation for the deleted entity. Closes #4846883

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