debian/cubicweb-ctl.prerm
author Katia Saurfelt <katia.saurfelt@logilab.fr>
Fri, 19 Jun 2015 17:54:04 +0200
changeset 10398 bd00b58b00d9
parent 6917 e080e7465ac4
permissions -rw-r--r--
[web] Fix the path to the `static directory` (closes #5355965)

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