diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:06:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:06:18 +0000 |
commit | af41ca0c5bea542f8136b93e4e2b0141b905b7b6 (patch) | |
tree | 895f45e42ae7beb3fd1fcac4515637788ef68e41 | |
parent | Adding update-alternatives to use knsupdate for /usr/bin/nsupdate. (diff) | |
download | knot-af41ca0c5bea542f8136b93e4e2b0141b905b7b6.tar.xz knot-af41ca0c5bea542f8136b93e4e2b0141b905b7b6.zip |
Adding update-alternatives to use khost for /usr/bin/host.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/knot-host.postinst | 25 | ||||
-rw-r--r-- | debian/knot-host.prerm | 23 |
2 files changed, 48 insertions, 0 deletions
diff --git a/debian/knot-host.postinst b/debian/knot-host.postinst new file mode 100644 index 0000000..e0706fe --- /dev/null +++ b/debian/knot-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/khost 10 \ + --slave /usr/share/man/man1/host.1.gz host.1.gz /usr/share/man/man1/khost.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-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 |