17 lines
480 B
Bash
Executable File
17 lines
480 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ] ; then
|
|
update-alternatives --install /usr/bin/gnome-www-browser \
|
|
gnome-www-browser /usr/bin/firefox 40
|
|
|
|
update-alternatives --install /usr/bin/x-www-browser \
|
|
x-www-browser /usr/bin/firefox 40
|
|
fi
|
|
|
|
# Automatically added by dh_installdeb/13.6ubuntu1
|
|
dpkg-maintscript-helper rm_conffile /etc/firefox/syspref.js -- "$@"
|
|
# End automatically added section
|
|
|