ddns-scripts: fix netcup.com readonly variable
authorTim Flubshi <redacted>
Sun, 26 Apr 2026 15:47:02 +0000 (17:47 +0200)
committerFlorian Eckert <redacted>
Mon, 27 Apr 2026 12:26:29 +0000 (14:26 +0200)
The netcup ddns update script fails on subsequent runs because a
readonly variable is assigned again. Fix this by removing the readonly
declaration to allow repeated execution.

Signed-off-by: Tim Flubshi <redacted>
net/ddns-scripts/files/usr/lib/ddns/update_netcup_com.sh

index 841ff263a29daaddc85ec881d14a557b0f0ad9a7..d8da97a760196336212f1e7bdb5690c4a3fc283e 100755 (executable)
@@ -32,7 +32,7 @@
 # Constants
 # ---------------------------------------------------------------------------
 
-readonly __NETCUP_ENDPOINT="https://ccp.netcup.net/run/webservice/servers/endpoint.php?JSON"
+__NETCUP_ENDPOINT="https://ccp.netcup.net/run/webservice/servers/endpoint.php?JSON"
 
 # ---------------------------------------------------------------------------
 # Validate required configuration variables
git clone https://git.99rst.org/PROJECT