summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-06 00:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-06 00:54:28 +0000
commit9f05686815896b465388d727078c816100c8a909 (patch)
treed066469052db56d57be3f65184c2fe7204af7e39 /debian
parentMoving kzonecheck from knot to knot-dnsutils (Closes: #925035). (diff)
downloadknot-9f05686815896b465388d727078c816100c8a909.tar.xz
knot-9f05686815896b465388d727078c816100c8a909.zip
Adding update-alternatives to use kdig for /usr/bin/dig.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r--debian/knot-dnsutils.postinst25
-rw-r--r--debian/knot-dnsutils.prerm23
2 files changed, 48 insertions, 0 deletions
diff --git a/debian/knot-dnsutils.postinst b/debian/knot-dnsutils.postinst
new file mode 100644
index 0000000..e406690
--- /dev/null
+++ b/debian/knot-dnsutils.postinst
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ configure)
+ # update-alternatives: dig
+ update-alternatives --quiet \
+ --install /usr/bin/dig dig /usr/bin/kdig 10 \
+ --slave /usr/share/man/man1/dig.1.gz dig.1.gz /usr/share/man/man1/kdig.1.gz
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0
diff --git a/debian/knot-dnsutils.prerm b/debian/knot-dnsutils.prerm
new file mode 100644
index 0000000..178b8a1
--- /dev/null
+++ b/debian/knot-dnsutils.prerm
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ remove|upgrade|deconfigure)
+ # update-alternatives: dig
+ update-alternatives --quiet --remove dig /usr/bin/kdig
+ ;;
+
+ failed-upgrade)
+
+ ;;
+
+ *)
+ echo "prerm called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0