debian/cubicweb-ctl.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Fri, 22 Feb 2013 19:36:40 +0100
changeset 8719 539ed3fb27cb
parent 6917 e080e7465ac4
permissions -rw-r--r--
[towards py3k] import reduce() from functools (part of #2711624)

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