debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 21 Jan 2014 14:00:26 +0100
branchstable
changeset 9437 838d58a30f7e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[debian] move yams max version to Depends And fix a syntax error and wrong package name in the process.

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