#!/bin/sh
set -e
case "$1" in
    remove|deconfigure)
        update-alternatives --remove x-www-browser /usr/bin/midori
        ;;
esac

exit 0
