debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 12 Mar 2015 12:29:25 +0100
changeset 10273 ef74abcf369d
parent 6917 e080e7465ac4
permissions -rw-r--r--
[config] disable fckeditor by default (closes #1368900) FCKEditor is no longer maintained, and has a history of XSS issues. Let's use plain text as default text format.

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