debian/cubicweb-ctl.prerm
author Denis Laxalde <denis.laxalde@logilab.fr>
Thu, 13 Mar 2014 15:33:22 +0100
branchstable
changeset 9592 6fd2651719bc
parent 6917 e080e7465ac4
permissions -rw-r--r--
[ext/rest] Catch SystemExit raised by docutils docutils publisher may raise SystemExit which is not caught by Exception. Closes #3648763.

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