debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 05 Dec 2011 14:31:43 +0100
branchstable
changeset 8108 91868ec92391
parent 6917 e080e7465ac4
permissions -rw-r--r--
[migration] Ignore IOError from readline.write_history_file (closes #2106621) We already ignore them when reading the histfile, no reason writing it back should be any different.

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