debian/cubicweb-ctl.prerm
author Arthur Lutz <arthur.lutz@logilab.fr>
Wed, 23 May 2012 11:05:03 +0200
branchstable
changeset 8418 3f87aa655466
parent 6917 e080e7465ac4
permissions -rw-r--r--
[docstrings] typos corrected

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