debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Mon, 01 Oct 2012 12:40:35 +0200
branchstable
changeset 8566 76bcfb3c483d
parent 6917 e080e7465ac4
permissions -rw-r--r--
[ldapparser] raise specific error if the configuration is wrong (closes #2498164)

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