debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 10 Oct 2013 12:30:35 +0200
branchstable
changeset 9276 ae3fd6f8da76
parent 6917 e080e7465ac4
permissions -rw-r--r--
[packaging] setup.py: don't exclude skeleton/debian/* from being installed Closes #3192725.

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