debian/cubicweb-ctl.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 25 Jul 2013 10:25:49 +0200
changeset 9185 499f9ddc4470
parent 6917 e080e7465ac4
permissions -rw-r--r--
[pkg] Add log directory to rpm

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