blob: b03dbd6b8dfe7f11fd236a5d3aa18952cf66640c (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh -e
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
update-alternatives --remove x-www-browser /usr/bin/palemoon
update-alternatives --remove gnome-www-browser /usr/bin/palemoon
fi
#DEBHELPER#
|