blob: dde13572d9fd7fa6e84a2e61fd9a61f30dae4796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh -e
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ] ; then
update-alternatives --install /usr/bin/gnome-www-browser \
gnome-www-browser /usr/bin/palemoon 40
update-alternatives --install /usr/bin/x-www-browser \
x-www-browser /usr/bin/palemoon 40
fi
#DEBHELPER#
|