diff --git a/duckdns/CHANGELOG.md b/duckdns/CHANGELOG.md index 2865574..88570dc 100644 --- a/duckdns/CHANGELOG.md +++ b/duckdns/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.11 + +- Do not skip TLS security checks on Duck DNS API access + ## 1.10 - Fix issue with dehydrated lock file diff --git a/duckdns/data/run.sh b/duckdns/data/run.sh index 0d5bbd0..65e2aec 100755 --- a/duckdns/data/run.sh +++ b/duckdns/data/run.sh @@ -50,7 +50,7 @@ fi # Run duckdns while true; do - if answer="$(curl -sk "https://www.duckdns.org/update?domains=${DOMAINS}&token=${TOKEN}&ip=${IPV4}&ipv6=${IPV6}&verbose=true")"; then + if answer="$(curl -s "https://www.duckdns.org/update?domains=${DOMAINS}&token=${TOKEN}&ip=${IPV4}&ipv6=${IPV6}&verbose=true")"; then bashio::log.info "${answer}" else bashio::log.warning "${answer}"