debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 29 Aug 2013 16:20:33 +0200
branchstable
changeset 9228 90b8c7a7e205
parent 6917 e080e7465ac4
permissions -rw-r--r--
[deprecation] add (approximate) version number to deprecation message and set proper stacklevel

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