debian/cubicweb-ctl.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 01 Mar 2012 14:32:42 +0100
branchstable
changeset 8289 c17d855bd95b
parent 6917 e080e7465ac4
permissions -rw-r--r--
[repo test] fix test regression introduced by 8286:8b0146e31baa

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