debian/cubicweb-ctl.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Fri, 25 Jul 2014 16:11:46 +0200 (2014-07-25)
changeset 10407 18d1ef2d2a3e
parent 6917 e080e7465ac4
permissions -rw-r--r--
[js] simplify cw.log implementation There's no need to rebuild and array and join its content, just call console.log with ``arguments``. The only trick is that console.log must be called on a console instance.
#! /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