#!/bin/sh
# postrm script for knots2
#
# see: dh_installdeb(1)

set -e

case "$1" in
    upgrade)
    ;;

    purge|remove|failed-upgrade|abort-install|abort-upgrade|disappear)
    /usr/bin/gconftool-2 --recursive-unset /apps/knots || true
    ;;

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


