summaryrefslogtreecommitdiffstats
path: root/debian/knot-host.prerm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:24:48 +0000
commit39eefb0a0098ce5365c18b54d59c355d7b24dd0c (patch)
treeb1f86ca3af52bb1011a58ddddbf5a6660574cf04 /debian/knot-host.prerm
parentAdding update-alternatives to use knsupdate for /usr/bin/nsupdate. (diff)
downloadknot-39eefb0a0098ce5365c18b54d59c355d7b24dd0c.tar.xz
knot-39eefb0a0098ce5365c18b54d59c355d7b24dd0c.zip
Adding update-alternatives to use khost for /usr/bin/host.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--debian/knot-host.prerm23
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/knot-host.prerm b/debian/knot-host.prerm
new file mode 100644
index 0000000..d2e70f3
--- /dev/null
+++ b/debian/knot-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/khost
+ ;;
+
+ failed-upgrade)
+
+ ;;
+
+ *)
+ echo "prerm called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0