debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 23 Jun 2015 15:50:18 +0200
changeset 10450 c5c9e5b6fde0
parent 6917 e080e7465ac4
permissions -rw-r--r--
[server/rql2sql] fix spelling in comment Not that I understand what that sentence means.

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