debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 26 Feb 2010 06:59:16 +0100
branchstable
changeset 4703 4e803c30b7db
parent 0 b97547f5f1fa
child 6917 e080e7465ac4
permissions -rw-r--r--
[session] user.login is usually an unicode string, so implements __unicode__ instead of __str__

#! /bin/sh -e
 
case "$1" in
    purge)
        rm -rf /etc/cubicweb.d/
    	rm -rf /var/run/cubicweb/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0