diff options
Diffstat (limited to 'debian/knot-dnsutils.postinst')
-rw-r--r-- | debian/knot-dnsutils.postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/knot-dnsutils.postinst b/debian/knot-dnsutils.postinst new file mode 100644 index 0000000..e406690 --- /dev/null +++ b/debian/knot-dnsutils.postinst @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + # update-alternatives: dig + update-alternatives --quiet \ + --install /usr/bin/dig dig /usr/bin/kdig 10 \ + --slave /usr/share/man/man1/dig.1.gz dig.1.gz /usr/share/man/man1/kdig.1.gz + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |