debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 11 Dec 2013 16:01:15 +0100
branchstable
changeset 9345 b02e2912cad5
parent 6917 e080e7465ac4
permissions -rw-r--r--
[debian] add lintian override for a false positive

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