debian/cubicweb-ctl.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Mon, 06 Jun 2011 16:33:21 +0200
changeset 7462 fbfde96437ad
parent 6917 e080e7465ac4
permissions -rw-r--r--
[web] fix typo

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