1 #! /bin/sh -e
2
3 case "$1" in
4 purge)
5 rm -rf /etc/cubicweb.d/
6 rm -rf /var/run/cubicweb/
7 rm -rf /var/log/cubicweb/
8 rm -rf /var/lib/cubicweb/
9 ;;
10 esac
11
12 #DEBHELPER#
13
14 exit 0