debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 14 Feb 2014 10:39:16 +0100
branchstable
changeset 9528 7f3a3fc4a2a3
parent 6917 e080e7465ac4
permissions -rw-r--r--
backout 8f3e963501e2, which is not ready yet

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