summaryrefslogtreecommitdiff
path: root/newmoon/debian/newmoon.prerm
diff options
context:
space:
mode:
Diffstat (limited to 'newmoon/debian/newmoon.prerm')
-rwxr-xr-xnewmoon/debian/newmoon.prerm8
1 files changed, 8 insertions, 0 deletions
diff --git a/newmoon/debian/newmoon.prerm b/newmoon/debian/newmoon.prerm
new file mode 100755
index 0000000..b9c48b6
--- /dev/null
+++ b/newmoon/debian/newmoon.prerm
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+
+if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
+ update-alternatives --remove x-www-browser /usr/bin/newmoon
+ update-alternatives --remove gnome-www-browser /usr/bin/newmoon
+fi
+
+#DEBHELPER#
bgstack15