#!/bin/sh
#
# I know this does nothing.  It used to, and I wanted to keep it
# around as a stub in case I went back to my last method for handling
# symlink removal.

set -e

case "$1" in 
    upgrade)
        exit 0
        ;;
    remove|purge)
        exit 0               
        ;;
    failed-upgrade|abort-install|abort-upgrade|disappear)
        exit 0
        ;;
    *)
        echo "The postrm script was called with unknown argument \`$1'" >&2
        exit 0
        ;;
esac

#DEBHELPER#
