debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 06 Jun 2011 16:19:19 +0200
changeset 7461 cb25b62074cc
parent 6917 e080e7465ac4
permissions -rw-r--r--
[datafeed] fix stupid error introduced by 'just before qfinish' refactoring...

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