debian/cubicweb-ctl.prerm
author Florent Cayré <florent.cayre@gmail.com>
Tue, 27 Sep 2011 18:46:36 +0200
changeset 7875 65e460690139
parent 6917 e080e7465ac4
permissions -rw-r--r--
[form, entity] refactor '__linkto', now handled by the entity form, not the entity itself. Closes #1931543

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