#! /bin/sh
#
# see: dh_installdeb(1)

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


case "$1" in
       upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

        ;;

	purge|remove)

	if [ "$1" = purge ]; then
		update-rc.d bind remove >/dev/null
		if [ -e /usr/share/debconf/confmodule ]; then
		    # Source debconf library.
		        . /usr/share/debconf/confmodule
		    # Remove my changes to the db.
		        db_purge;
		fi
		rm -f /etc/sbbs.ini
	fi

	FACILITY=`grep synchronet /etc/syslog.conf | cut -d. -f1` || true
	if [ ! -z "$FACILITY" ]; then
		/usr/sbin/syslog-facility remove $FACILITY
	fi
	kill -HUP `cat /var/run/syslogd.pid`

        ;;

    *)
        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.

# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
	db_purge
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
	update-rc.d synchronet remove defaults >/dev/null
fi
# End automatically added section


exit 0
