#!/bin/sh
# postrm script for CourierGraph
# by Jose Luis Tallon <jltallon@adv-solutions.net>

set -e

# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package

DATADIR=/var/lib/bindgraph
CACHEDIR=/var/cache/bindgraph
DEFAULTS=/etc/default/bindgraph 

case "$1" in
        purge)
		if [ -e /usr/share/debconf/confmodule ]; then
			. /usr/share/debconf/confmodule
			db_get bindgraph/stay_on_purge
			if [ "$RET" = "true" ]; then
				if [ -d $DATADIR ]; then rm -rf $DATADIR
				else rm -f $DATADIR/bindgraph.rrd
				fi
			fi
		fi
		rm -rf $CACHEDIR
		rm -f /etc/default/bindgraph
	;;

	remove)
		rm -rf $CACHEDIR
	;;

	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

        ;;

    *)
        echo "postrm called with unknown argument \$1'" >&2
        exit 1

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
