debian/cubicweb-ctl.prerm
author Arthur Lutz <arthur.lutz@logilab.fr>
Thu, 09 Jun 2011 14:37:32 +0200
changeset 7482 0fa5dee25b7d
parent 6917 e080e7465ac4
permissions -rw-r--r--
[doc] Small addition to apache configuration in book

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