debian/cubicweb-ctl.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Fri, 21 Jun 2013 11:39:34 +0200
changeset 9053 862040061173
parent 6917 e080e7465ac4
permissions -rw-r--r--
[client-connection] add a request() method for dbapi compatibility To ease transition from dbapi to repoapi we need the ClientConnection to be as compatible as possible with the dbapi. Adding this method goes in this direction. It'll get deprecated in the deprecation wave that will conclude the repoapi refactoring. related to #2503918

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