Codebase list dillo / 50bb414 debian / prerm
50bb414

Tree @50bb414 (Download .tar.gz)

prerm @50bb414raw · history · blame

#!/bin/sh
set -e

case "$1" in
    remove|deconfigure)
        update-alternatives --quiet --remove x-www-browser /usr/bin/dillo
        ;;
    *)
esac

#DEBHELPER#