debian/cubicweb-ctl.prerm
author Denis Laxalde <denis.laxalde@logilab.fr>
Tue, 04 Feb 2014 11:23:58 +0100
changeset 9513 a7e0746f010c
parent 6917 e080e7465ac4
permissions -rw-r--r--
[doc/3.19] Clarify repoapi.get_repository usage Followup for 9a62c52d167e.

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