We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786008a commit eef9655Copy full SHA for eef9655
network/ddclient-configuration.sh
@@ -41,8 +41,8 @@ else
41
removal_popup "$SCRIPT_NAME"
42
fi
43
44
-# install needed tool
45
-apt-get update -q4 & spinner_loading
+# Install curl for ddclient to work around 3.10.0 parsing bug (see #2754)
+install_if_not curl
46
DEBIAN_FRONTEND=noninteractive apt-get install ddclient -y
47
48
# Test if file exists
@@ -182,6 +182,11 @@ cat << DDCLIENT_CONF > "/etc/ddclient.conf"
182
use=if, if=$IFACE
183
use=web, web=https://api.ipify.org
184
185
+# Work around ddclient 3.10.0+ parsing bug by using curl
186
+# See: https://github.com/ddclient/ddclient/issues/499
187
+# and: https://github.com/nextcloud/vm/issues/2754
188
+curl=yes
189
+
190
# DDNS-service specific setting
191
# Provider=$PROVIDER
192
protocol=$PROTOCOL
0 commit comments