From d5254e5e8f078c6bbd35b8cbc6dc64f8c7a9aa00 Mon Sep 17 00:00:00 2001 From: redxef Date: Thu, 29 Oct 2020 23:09:21 +0100 Subject: [PATCH] Increase wait time for record update. --- certbot-auth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-auth b/certbot-auth index 2edc969..728a071 100755 --- a/certbot-auth +++ b/certbot-auth @@ -5,5 +5,5 @@ set -x baseurl='https://www.duckdns.org/update?domains=%s&token=%s&txt=%s' result="$(printf "url=$baseurl\n" "$DUCKDNS_DOMAIN" "$DUCKDNS_TOKEN" "$CERTBOT_VALIDATION" | curl -K -)" # give some time for the record to update -sleep 120 +sleep 300 test "$result" = 'OK'