debian/cubicweb-ctl.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 23 May 2013 14:17:46 +0200
changeset 9075 8d36838ccb3e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[connection] move last part of undo logic in connection Now that Connection have a reference to the repo it can handle all of it itself

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