debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 15 Feb 2011 23:30:01 +0100
branchstable
changeset 6993 656561eddd1d
parent 6917 e080e7465ac4
permissions -rw-r--r--
[data operation] add new remove_data method

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