debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 08 Jan 2015 15:37:20 +0100
changeset 10150 c7b218125c25
parent 6917 e080e7465ac4
permissions -rw-r--r--
[pkg] don't include extra files in tarballs Blind wildcards for dirs that may contain generated or temporary files can lead to trouble and unreproducible results.

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