aboutsummaryrefslogblamecommitdiffstats
path: root/debian/prerm
blob: 3d9ad18bd2b27ad297dd65555984881979bb6d83 (plain) (tree)
1
2
3
4
5
6
7
8


         



                                                               
                                                                     




           
#!/bin/sh

set -e

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

#DEBHELPER#