debian/cubicweb-ctl.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 27 Jun 2013 18:47:08 +0200
changeset 9120 fa513ac7a2a5
parent 6917 e080e7465ac4
permissions -rw-r--r--
[session] privatise get_cnx and close_cnx The only user, repoapi now use ``new_cnx``

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