debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 22 Jun 2015 11:28:16 +0200
changeset 10406 9c7461bf99a7
parent 6917 e080e7465ac4
permissions -rw-r--r--
[web/views] don't force http redirect on logout We no longer forbid anonymous browsing on https, so we can keep the same scheme when logged out. Closes #5507479.

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