debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 23 Sep 2013 15:03:03 +0200 (2013-09-23)
branchstable
changeset 9238 08812a274425
parent 6917 e080e7465ac4
permissions -rw-r--r--
[debian] replace find | xargs rm with find -delete in cube skeleton. Closes #3161797
#! /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