debian/cubicweb-ctl.prerm
author David Douard <david.douard@logilab.fr>
Thu, 19 Sep 2013 18:03:09 +0200
branchstable
changeset 9233 7d3316bfa4ff
parent 6917 e080e7465ac4
permissions -rw-r--r--
[web] allow /data/ url again (closes #2464798) This feature was broken by 65fecbeb9c3a (which fixed another one itself).

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