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/rules | |
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 '')
-rwxr-xr-x | debian/rules | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 6666100..dfc098d 100755 --- a/debian/rules +++ b/debian/rules @@ -112,6 +112,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=.la --exclude=lwresd --exclude=__pycache_ --fail-missing |