From 62e94d48f908c6461d674d2af52971b9fa5fe19d Mon Sep 17 00:00:00 2001 From: FriesI23 Qin Date: Tue, 28 Jan 2025 10:22:27 +0800 Subject: [PATCH] ddns-script: fix retry_max_count at sample config MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix missed modification of ‘retry_count’ to ‘retry_max_count’ in commit ‘e3292e4c97’ (rename variable: s/retry_count/retry_max_count/). Signed-off-by: FriesI23 Qin --- net/ddns-scripts/samples/ddns.config_sample | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/ddns-scripts/samples/ddns.config_sample b/net/ddns-scripts/samples/ddns.config_sample index 46bd8abe24..517a8e652b 100644 --- a/net/ddns-scripts/samples/ddns.config_sample +++ b/net/ddns-scripts/samples/ddns.config_sample @@ -271,7 +271,7 @@ config service "myddns" # a network to use for communication. # should use option ip_source "web" (see above) # Needs GNU Wget (with SSL support) or cURL to be installed. - # GNU Wget will use IP address and cURL the physical device + # GNU Wget will use IP address and cURL the physical device # of the given network # default: none # option bind_network "wan7" @@ -304,10 +304,10 @@ config service "myddns" ########### # if error happen on detecting, sending or updating the - # script will retry the relevant action for retry_count times + # script will retry the relevant action for retry_max_count times # before stopping script execution. # default: 5 - option retry_count '5' + option retry_max_count '5' ########### # if error happen on detecting, sending or updating the -- 2.30.2