debian/cubicweb-ctl.prerm
author David Douard <david.douard@logilab.fr>
Mon, 11 Feb 2013 11:47:50 +0100
changeset 8829 bb14dc9848ec
parent 6917 e080e7465ac4
permissions -rw-r--r--
[c-c list] add an optional argument to the list command (closes #2709703) This optional argument allows to restrict listing to only a given type of items (cubes, instances, configurations).

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