debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 15 May 2015 18:11:08 +0200
changeset 10441 1d0f4064a87e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[test] run unittest_migractions on postgresql sqlite's lack of support for a bunch of alter table functionality means some thing just don't get tested otherwise.

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