debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 12 Oct 2011 19:06:15 +0200
changeset 7940 ac8052334e0d
parent 6917 e080e7465ac4
permissions -rw-r--r--
[printers] fix bug introduced by final view refactoring: &#160; shouldn't be escaped. Also remove some msgids which should have been removed during this refactoring

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