summaryrefslogtreecommitdiffstats
path: root/dehydrated
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2022-09-06 13:53:36 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2022-09-06 13:56:36 +0000
commit4d81c79c9726bb8820fa8c8c2ce3ff452e2e3e5b (patch)
tree4e1d6437e4b19fc245dab31af406f1d492e4d6d5 /dehydrated
parentTemporarily passing tsig string to bind in dehydrated-nsupdate to unbreak bin... (diff)
downloadservice-tools-4d81c79c9726bb8820fa8c8c2ce3ff452e2e3e5b.tar.xz
service-tools-4d81c79c9726bb8820fa8c8c2ce3ff452e2e3e5b.zip
Updating dig alternative handling similar to nsupdate for consistency.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'dehydrated')
-rwxr-xr-xdehydrated/bin/dehydrated-nsupdate14
1 files changed, 12 insertions, 2 deletions
diff --git a/dehydrated/bin/dehydrated-nsupdate b/dehydrated/bin/dehydrated-nsupdate
index ea86daa..c6bf6c5 100755
--- a/dehydrated/bin/dehydrated-nsupdate
+++ b/dehydrated/bin/dehydrated-nsupdate
@@ -45,16 +45,26 @@ esac
if command -v kdig > /dev/null 2>&1
then
# knot-dnsutils
- DIG="kdig +noidn"
+ DIG_VARIANT="knot"
elif command -v dig > /dev/null 2>&1
then
# bind-dnsutils
- DIG="dig +noidnout"
+ DIG_VARIANT="bind"
else
echo "'${HOOK}': need dig from bind-dnsutils or knot-dnsutils" >&2
exit 1
fi
+case "${DIG_VARIANT}" in
+ knot)
+ DIG="kdig +noidn"
+ ;;
+
+ bind)
+ DIG="dig +noidnout"
+ ;;
+esac
+
# alternatives handling for nsupdate
if command -v knsupdate > /dev/null 2>&1
then