debian/cubicweb-ctl.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 08 Dec 2011 13:17:25 +0100
changeset 8114 8311cc3b472a
parent 6917 e080e7465ac4
permissions -rw-r--r--
Link to python docs about strftime instead of pointing at "man" (closes #2106415) Not ideal, but better than pointing all users at Unix command-line tools.

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