From 32b03e69146591b90176bb3b67330993357a2886 Mon Sep 17 00:00:00 2001 From: Alex Klinkert Date: Thu, 25 Jun 2020 20:51:17 +0200 Subject: [PATCH] Load more than 20 records to work around big zones --- dyndns.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dyndns.sh b/dyndns.sh index 1711176..2cac53f 100755 --- a/dyndns.sh +++ b/dyndns.sh @@ -18,7 +18,7 @@ while ( true ); do domain_records=$(curl -s -X GET \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \ - $dns_list) + $dns_list"?per_page=200") ip="$(curl -s ipinfo.io/ip)"