debian/cubicweb-ctl.prerm
author Denis Laxalde <denis.laxalde@logilab.fr>
Mon, 06 Jan 2014 13:45:47 +0100
branchstable
changeset 9423 76c0c96557f8
parent 6917 e080e7465ac4
permissions -rw-r--r--
[doc] Pass field to value callback in FieldsForm example This avoids a deprecation warning when following the documentation.

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