1 #!/bin/sh -e
2
3 if [ "$1" = "purge" ] ; then
4 rm -rf /etc/cubicweb.d/
5 rm -rf /var/log/cubicweb/
6 rm -rf /var/lib/cubicweb/
7 fi
8
9 #DEBHELPER#
10
11 exit 0