debian/cubicweb-ctl.prerm
author Alexandre Richardson <alexandre.richardson@logilab.fr>
Mon, 13 Feb 2012 12:49:49 +0100
branchstable
changeset 8227 884405bf3621
parent 6917 e080e7465ac4
permissions -rw-r--r--
[email notifications] send notification at post-commit time (closes #2119248)

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