debian/cubicweb-ctl.prerm
author Florent <florent@secondweb.fr>
Tue, 28 Jul 2009 22:22:08 +0200 (2009-07-28)
changeset 2557 200985d3258d
parent 0 b97547f5f1fa
child 6917 e080e7465ac4
permissions -rw-r--r--
make it easy to change response of FormValidatorController
#! /bin/sh -e
 
case "$1" in
    purge)
        rm -rf /etc/cubicweb.d/
    	rm -rf /var/run/cubicweb/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0