debian/cubicweb-ctl.postrm
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Fri, 14 Apr 2017 17:17:12 +0200
branch3.25
changeset 12165 127f7da447a4
parent 11832 e8be49ecb522
permissions -rw-r--r--
[cwconfig] load appobjects subpackages recursively This is a regression appeared in 3.25.0. Appobjects (entities, views etc) subpackages should be loaded recursively, this is the historical behavior, relevant code is in logilab.common.registry._toload_info(). To keep historical behavior schema subpackages should not be loaded, relevant code is in yams.reader.get_schema_files(). We may want to have a consistent behavior later on... Closes #17073706.

#!/bin/sh -e

if [ "$1" = "purge" ] ; then
        rm -rf /etc/cubicweb.d/
        rm -rf /var/log/cubicweb/
        rm -rf /var/lib/cubicweb/
fi

#DEBHELPER#
 
exit 0