mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
duckdns: do not skip TLS security checks on Duck DNS API access (#1018)
This commit is contained in:
committed by
Pascal Vizeli
parent
39b0d9b3f8
commit
cbbbea9a84
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.11
|
||||||
|
|
||||||
|
- Do not skip TLS security checks on Duck DNS API access
|
||||||
|
|
||||||
## 1.10
|
## 1.10
|
||||||
|
|
||||||
- Fix issue with dehydrated lock file
|
- Fix issue with dehydrated lock file
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ fi
|
|||||||
|
|
||||||
# Run duckdns
|
# Run duckdns
|
||||||
while true; do
|
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}"
|
bashio::log.info "${answer}"
|
||||||
else
|
else
|
||||||
bashio::log.warning "${answer}"
|
bashio::log.warning "${answer}"
|
||||||
|
|||||||
Reference in New Issue
Block a user