debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 13 Jun 2014 11:00:41 +0200
branchstable
changeset 9923 da09975300aa
parent 6917 e080e7465ac4
permissions -rw-r--r--
[cwctl] don't prompt for cube options in automatic mode Closes #3984223

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