summaryrefslogtreecommitdiff
path: root/newmoon/debian/newmoon.postinst
blob: 8757aed902be03be32290ccdb8640fed7ff7f299 (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/newmoon 40

    update-alternatives --install /usr/bin/x-www-browser \
        x-www-browser /usr/bin/newmoon 40
fi

#DEBHELPER#
bgstack15