debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Mon, 13 Jan 2014 15:27:35 +0100
branchstable
changeset 9433 dd708175dc43
parent 6917 e080e7465ac4
permissions -rw-r--r--
[adapters] fix a name stomping error (entity) Also give proper name to subject (role, not target), and kill unused variable.

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