diff options
author | B Stack <bgstack15@gmail.com> | 2020-09-16 23:09:34 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-09-16 23:09:34 +0000 |
commit | ba853302cb64a1f88388db3cc2b6e39d0d327776 (patch) | |
tree | 71a13bbada07e81b32da105e05f05a04443fa802 /newmoon/debian/newmoon.postinst | |
parent | Merge branch 'waterfox-bump' into 'master' (diff) | |
parent | WIP: add xfce-helper for palemoon (diff) | |
download | stackrpms-ba853302cb64a1f88388db3cc2b6e39d0d327776.tar.gz stackrpms-ba853302cb64a1f88388db3cc2b6e39d0d327776.tar.bz2 stackrpms-ba853302cb64a1f88388db3cc2b6e39d0d327776.zip |
Merge branch 'palemoon-bump' into 'master'
Palemoon 28.13.0
See merge request bgstack15/stackrpms!187
Diffstat (limited to 'newmoon/debian/newmoon.postinst')
-rwxr-xr-x | newmoon/debian/newmoon.postinst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/newmoon/debian/newmoon.postinst b/newmoon/debian/newmoon.postinst new file mode 100755 index 0000000..8757aed --- /dev/null +++ b/newmoon/debian/newmoon.postinst @@ -0,0 +1,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/newmoon 40 + + update-alternatives --install /usr/bin/x-www-browser \ + x-www-browser /usr/bin/newmoon 40 +fi + +#DEBHELPER# |