diff options
author | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-11-02 20:44:57 -0500 |
---|---|---|
committer | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-11-05 10:52:21 -0600 |
commit | 5c260386d246fd76df70540d003ac808fe33b467 (patch) | |
tree | d78eb6cb10c808997bb61862e19ea1c893caee6d /interface-definitions/dns-dynamic.xml.in | |
parent | d8a71978b4628e30b25346f4ff690e8705020408 (diff) | |
download | vyos-1x-5c260386d246fd76df70540d003ac808fe33b467.tar.gz vyos-1x-5c260386d246fd76df70540d003ac808fe33b467.zip |
ddclient: T5708: Migrate `timeout` to `interval`
Time interval in seconds to wait between DNS updates would be a bit
more intuitive as `interval` than `timeout`.
Diffstat (limited to 'interface-definitions/dns-dynamic.xml.in')
-rw-r--r-- | interface-definitions/dns-dynamic.xml.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interface-definitions/dns-dynamic.xml.in b/interface-definitions/dns-dynamic.xml.in index 723223f1c..07b1bf1b8 100644 --- a/interface-definitions/dns-dynamic.xml.in +++ b/interface-definitions/dns-dynamic.xml.in @@ -134,9 +134,9 @@ </tagNode> </children> </tagNode> - <leafNode name="timeout"> + <leafNode name="interval"> <properties> - <help>Time in seconds to wait between DNS updates</help> + <help>Interval in seconds to wait between Dynamic DNS updates</help> <valueHelp> <format>u32:60-3600</format> <description>Time in seconds</description> @@ -144,7 +144,7 @@ <constraint> <validator name="numeric" argument="--range 60-3600"/> </constraint> - <constraintErrorMessage>Timeout must be between 60 and 3600 seconds</constraintErrorMessage> + <constraintErrorMessage>Interval must be between 60 and 3600 seconds</constraintErrorMessage> </properties> <defaultValue>300</defaultValue> </leafNode> |