debian/cubicweb-ctl.prerm
author Sandrine Ribeau <sandrine.ribeau@logilab.fr>
Mon, 03 May 2010 14:17:45 +0200
changeset 5454 76b828dc3b9f
parent 0 b97547f5f1fa
child 6917 e080e7465ac4
permissions -rw-r--r--
[json-controller] - refactoring of js_component and js_view, it now uses _call_view - _call_view accepts paginate as a parameter

#! /bin/sh -e
 
case "$1" in
    purge)
        rm -rf /etc/cubicweb.d/
    	rm -rf /var/run/cubicweb/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0