duckdns: do not skip TLS security checks on Duck DNS API access (#1018)

This commit is contained in:
Ville Skyttä
2020-01-28 10:26:48 +02:00
committed by Pascal Vizeli
parent 39b0d9b3f8
commit cbbbea9a84
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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}"