debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 09 May 2012 15:06:43 +0200
changeset 8388 c6c624cea870
parent 6917 e080e7465ac4
permissions -rw-r--r--
[repo test] Avoid hangs in zmq repo unit test - interaction through the zmq event loop from a different thread is only allowed through add_callback - notify the background thread when the client dies with an exception so it doesn't spin forever

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