summaryrefslogtreecommitdiffstats
path: root/debian/bind9-host.prerm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:00:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:00:37 +0000
commitf157715ccd6548e1bef686dbd6eed058b192ae09 (patch)
tree973a3467b97b78c03da10698dc5fd2e1d74cfb97 /debian/bind9-host.prerm
parentUsing update-alternatives to handle /usr/bin/nsupdate. (diff)
downloadbind9-f157715ccd6548e1bef686dbd6eed058b192ae09.tar.xz
bind9-f157715ccd6548e1bef686dbd6eed058b192ae09.zip
Using update-alternatives to handle /usr/bin/host.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/bind9-host.prerm')
-rw-r--r--debian/bind9-host.prerm23
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/bind9-host.prerm b/debian/bind9-host.prerm
new file mode 100644
index 0000000..359634a
--- /dev/null
+++ b/debian/bind9-host.prerm
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ remove|upgrade|deconfigure)
+ # update-alternatives: host
+ update-alternatives --quiet --remove host /usr/bin/host.bind9
+ ;;
+
+ failed-upgrade)
+
+ ;;
+
+ *)
+ echo "prerm called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0