debian/cubicweb-ctl.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Thu, 23 May 2013 18:57:25 +0200
changeset 8984 0f2fad7a92d4
parent 6917 e080e7465ac4
permissions -rw-r--r--
[cw-ctl] fix help message for schemadiff In global help (closes #2888538) The leading space make it appears on multiple line. The help content is a bit improved in the process.

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