From f157715ccd6548e1bef686dbd6eed058b192ae09 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 18:00:37 +0200 Subject: Using update-alternatives to handle /usr/bin/host. Signed-off-by: Daniel Baumann --- debian/bind9-host.postinst | 25 +++++++++++++++++++++++++ debian/bind9-host.prerm | 23 +++++++++++++++++++++++ debian/rules | 7 +++++++ 3 files changed, 55 insertions(+) create mode 100644 debian/bind9-host.postinst create mode 100644 debian/bind9-host.prerm (limited to 'debian') diff --git a/debian/bind9-host.postinst b/debian/bind9-host.postinst new file mode 100644 index 0000000..0f149fd --- /dev/null +++ b/debian/bind9-host.postinst @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + # update-alternatives: host + update-alternatives --quiet \ + --install /usr/bin/host host /usr/bin/host.bind9 20 \ + --slave /usr/share/man/man1/host.1.gz host.1.gz /usr/share/man/man1/host.bind9.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/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 diff --git a/debian/rules b/debian/rules index a940fef..6fb850d 100755 --- a/debian/rules +++ b/debian/rules @@ -131,6 +131,13 @@ override_dh_install: mv debian/bind9-dnsutils/usr/share/man/man1/nsupdate.1 debian/bind9-dnsutils/usr/share/man/man1/nsupdate.bind9.1; \ fi + # update-alternatives: host + if [ -e debian/bind9-host/usr/bin/host ]; \ + then \ + mv debian/bind9-host/usr/bin/host debian/bind9-host/usr/bin/host.bind9; \ + mv debian/bind9-host/usr/share/man/man1/host.1 debian/bind9-host/usr/share/man/man1/host.bind9.1; \ + fi + override_dh_missing: dh_missing $(EXCLUDE_FILES) --fail-missing -- cgit v1.2.3