debian/cubicweb-ctl.prerm
author David Douard <david.douard@logilab.fr>
Tue, 19 Nov 2013 09:42:48 +0100
changeset 9343 cf21813d7003
parent 6917 e080e7465ac4
permissions -rw-r--r--
[css] add the entypo font as available ressource (closes #2930356) This provides a standard set of pictograms for use in CubicWeb and cubes. To use a pictogram, the "cubicweb.pictograms.css" must be explicitly loaded (using, e.g. view.add_css(...)).

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