Your IP : 216.73.216.95


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/lynx.prerm

#! /bin/sh
# prerm script for lynx
#
# see: dh_installdeb(1)

set -e

case "$1" in
    remove|deconfigure)
	update-alternatives --remove www-browser /usr/bin/lynx
#	update-alternatives --remove lynx /usr/bin/lynx
        ;;
    failed-upgrade|upgrade)
        ;;
    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.



exit 0