debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@pythonian.fr>
Wed, 03 Jun 2015 12:36:31 +0200
changeset 10404 797db633d60c
parent 6917 e080e7465ac4
permissions -rw-r--r--
[formwidgets] move TextArea constants to the class level This will make it easy to override them.

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