debian/cubicweb-ctl.prerm
author Anthony Truchet <anthony.truchet@logilab.fr>
Wed, 22 Feb 2012 11:57:42 +0100
changeset 8574 268bc595271b
parent 6917 e080e7465ac4
permissions -rw-r--r--
backporting

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