Codebase list dillo / 8a56399 debian / prerm
8a56399

Tree @8a56399 (Download .tar.gz)

prerm @8a56399raw · history · blame

#!/bin/sh
set -e

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

#DEBHELPER#