blob: 3d9ad18bd2b27ad297dd65555984881979bb6d83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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#
|