debian/cubicweb-ctl.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Mon, 04 Oct 2010 18:56:10 +0200 (2010-10-04)
changeset 6390 3766853656d7
parent 0 b97547f5f1fa
child 6917 e080e7465ac4
permissions -rw-r--r--
[repo] add a find_users method for under-privileged accounts
#! /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