diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2024-02-06 12:18:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2024-02-06 12:18:58 +0000 |
commit | 45cf0d3f6d526ce8c0185342a98b579390026a3a (patch) | |
tree | ced94d673f96dc5b96159827dbbfcd7737d50389 /dehydrated | |
parent | Removing znuny-tools, not used anymore. (diff) | |
download | service-tools-45cf0d3f6d526ce8c0185342a98b579390026a3a.tar.xz service-tools-45cf0d3f6d526ce8c0185342a98b579390026a3a.zip |
Updating error messages if dependencies are not there to list all programs in dehydrated-nsupdate hook.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | dehydrated/bin/dehydrated-nsupdate | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dehydrated/bin/dehydrated-nsupdate b/dehydrated/bin/dehydrated-nsupdate index d59e5ff..922ee5c 100755 --- a/dehydrated/bin/dehydrated-nsupdate +++ b/dehydrated/bin/dehydrated-nsupdate @@ -51,7 +51,7 @@ then # bind-dnsutils DIG_VARIANT="bind" else - echo "'${HOOK}': need dig from bind-dnsutils or knot-dnsutils" >&2 + echo "'${HOOK}': need dig from bind-dnsutils or kdig from knot-dnsutils" >&2 exit 1 fi @@ -75,7 +75,7 @@ then # bind-dnsutils NSUPDATE_VARIANT="bind" else - echo "'${HOOK}': need nsupdate from bind-dnsutils or knot-dnsutils" >&2 + echo "'${HOOK}': need nsupdate from bind-dnsutils or knsupdate from knot-dnsutils" >&2 exit 1 fi |