debian/cubicweb-ctl.prerm
author Laura Médioni <laura.medioni@logilab.fr>
Fri, 27 Jun 2014 12:00:17 +0200
changeset 9960 6359f3121f3f
parent 6917 e080e7465ac4
permissions -rw-r--r--
[hooks] do not abuse of inheritance for CWRType hooks Just copy the selector to ease readability.

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