debian/cubicweb-ctl.prerm
author Christophe de Vienne <christophe@unlish.com>
Wed, 19 Nov 2014 11:59:08 +0100
changeset 10031 bea3f6595fb4
parent 6917 e080e7465ac4
permissions -rw-r--r--
Restrict yams version CW 3.19 is not compatible with yams >= 0.40

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