#! /bin/sh
set -e

case "$1" in
    install)
    ;;
    
    upgrade)
	if [ "$2" \< "2.0-1" ]; then
	    echo "NOTE: Please read the upgrade instructions in /usr/share/doc/imms/README.Debian"
	fi
    ;;

    abort-upgrade)
    ;;

    *)
        echo "preinst 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


