This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pale-moon. commit caf8f02d954bf02246186ea2df40edc5f07eabfc Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Sep 19 20:07:33 2018 +0200 debian/palemoon.postinst: sync with Debian Firefox package. --- debian/changelog | 2 ++ debian/palemoon.postinst | 16 ++++++++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index cbd4283..53f2087 100644 --- a/debian/changelog +++ b/debian/changelog @@ -141,6 +141,8 @@ palemoon (27.9.2~repack-1-0x2go1) UNRELEASED; urgency=medium - Change missed "firefox" occurrence to "palemoon". - /usr/lib/palemoon-devel/include/testing does not seem to exist, so remove entry. + * debian/palemoon.postinst: + - Sync with Debian Firefox package. -- Mihai Moldovan <ionic@ionic.de> Mon, 28 May 2018 03:44:10 +0200 diff --git a/debian/palemoon.postinst b/debian/palemoon.postinst index dde1357..ac5cf2f 100755 --- a/debian/palemoon.postinst +++ b/debian/palemoon.postinst @@ -1,11 +1,19 @@ #!/bin/sh -e -if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ] ; then +if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] ; then + update-alternatives --install /usr/bin/x-www-browser \ + x-www-browser /usr/bin/palemoon 70 \ + --slave /usr/share/man/man1/x-www-browser.1.gz \ + x-www-browser.1.gz /usr/share/man/man1/palemoon.1.gz + update-alternatives --remove mozilla /usr/bin/palemoon update-alternatives --install /usr/bin/gnome-www-browser \ - gnome-www-browser /usr/bin/palemoon 40 + gnome-www-browser /usr/bin/palemoon 70 \ + --slave /usr/share/man/man1/gnome-www-browser.1.gz \ + gnome-www-browser.1.gz /usr/share/man/man1/palemoon.1.gz +fi - update-alternatives --install /usr/bin/x-www-browser \ - x-www-browser /usr/bin/palemoon 40 +if [ "$1" = "configure" ] ; then + rm -rf /usr/lib/palemoon/updates fi #DEBHELPER# -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git