debian/cubicweb-ctl.prerm
author Arthur Lutz <arthur.lutz@logilab.fr>
Thu, 04 Apr 2019 14:08:10 +0200
branch3.0
changeset 12559 be0a8b491f2a
parent 0 b97547f5f1fa
child 6917 e080e7465ac4
permissions -rw-r--r--
Reclosing branch after merge

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