debian/cubicweb-ctl.prerm
author Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>
Thu, 13 Feb 2014 15:11:07 +0100
changeset 9516 6e2244784b7d
parent 6917 e080e7465ac4
permissions -rw-r--r--
Fix typo in a setup.py comment

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