debian/cubicweb-ctl.prerm
author Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>
Thu, 28 Mar 2013 13:46:50 +0100
changeset 8823 3f590510f72e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[tutorial] minor documentation fixes

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