diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:27:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:27:25 +0000 |
commit | c1cfcc2066a83dbb7ccd7dc5f18523ce77f604ac (patch) | |
tree | 8925bfa8c30036306b18546d2b90815c53db3918 /debian/bind9-host.postinst | |
parent | Using update-alternatives to handle /usr/bin/nsupdate. (diff) | |
download | bind9-c1cfcc2066a83dbb7ccd7dc5f18523ce77f604ac.tar.xz bind9-c1cfcc2066a83dbb7ccd7dc5f18523ce77f604ac.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.postinst')
-rw-r--r-- | debian/bind9-host.postinst | 25 |
1 files changed, 25 insertions, 0 deletions
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 |