debian/cubicweb-ctl.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Fri, 03 May 2013 16:23:08 +0200
changeset 8964 46638faa807a
parent 6917 e080e7465ac4
permissions -rw-r--r--
[pkg/debian] expand all depends and co on multiple line This is more readable and simplifies patching.

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