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 | 9a7232a4beafecb5be5361df974970d841e6f221 (patch) | |
tree | 80c3564cbba7b5b06b6b856c86bbd4abed6b796c /debian/bind9-dnsutils.prerm | |
parent | Updating vcs fields. (diff) | |
download | bind9-9a7232a4beafecb5be5361df974970d841e6f221.tar.xz bind9-9a7232a4beafecb5be5361df974970d841e6f221.zip |
Using update-alternatives to handle /usr/bin/dig.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/bind9-dnsutils.prerm')
-rw-r--r-- | debian/bind9-dnsutils.prerm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/bind9-dnsutils.prerm b/debian/bind9-dnsutils.prerm new file mode 100644 index 0000000..07589cc --- /dev/null +++ b/debian/bind9-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/dig.bind9 + ;; + + failed-upgrade) + + ;; + + *) + echo "prerm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |