diff options
author | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-09-21 22:04:15 -0500 |
---|---|---|
committer | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-09-23 18:23:32 -0500 |
commit | 35e88be03f013e0ae240b6ec9b73fdd8d36ed75e (patch) | |
tree | 0a731453623b999ed49a0040e7f92d1ce7121814 /interface-definitions | |
parent | 9bb46a470ca372ca13acca789c14aaa114a19e0f (diff) | |
download | vyos-1x-35e88be03f013e0ae240b6ec9b73fdd8d36ed75e.tar.gz vyos-1x-35e88be03f013e0ae240b6ec9b73fdd8d36ed75e.zip |
ddclient: T5612: Refactor zone configuration
Refactor zone configuration to use shared XML snippet for all cases.
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/dns-dynamic.xml.in | 23 | ||||
-rw-r--r-- | interface-definitions/include/dns/dynamic-service-zone.xml.i | 14 |
2 files changed, 16 insertions, 21 deletions
diff --git a/interface-definitions/dns-dynamic.xml.in b/interface-definitions/dns-dynamic.xml.in index 94e0645d4..8d08bf37d 100644 --- a/interface-definitions/dns-dynamic.xml.in +++ b/interface-definitions/dns-dynamic.xml.in @@ -74,18 +74,7 @@ </properties> </leafNode> #include <include/dns/time-to-live.xml.i> - <leafNode name="zone"> - <properties> - <help>Forwarding zone to be updated</help> - <valueHelp> - <format>txt</format> - <description>RFC2136 Zone to be updated</description> - </valueHelp> - <constraint> - <validator name="fqdn"/> - </constraint> - </properties> - </leafNode> + #include <include/dns/dynamic-service-zone.xml.i> </children> </tagNode> <tagNode name="service"> @@ -112,15 +101,7 @@ </constraint> </properties> </leafNode> - <leafNode name="zone"> - <properties> - <help>DNS zone to update (not used by all protocols)</help> - <valueHelp> - <format>txt</format> - <description>Name of DNS zone</description> - </valueHelp> - </properties> - </leafNode> + #include <include/dns/dynamic-service-zone.xml.i> <leafNode name="ip-version"> <properties> <help>IP address version to use</help> diff --git a/interface-definitions/include/dns/dynamic-service-zone.xml.i b/interface-definitions/include/dns/dynamic-service-zone.xml.i new file mode 100644 index 000000000..0cc00468f --- /dev/null +++ b/interface-definitions/include/dns/dynamic-service-zone.xml.i @@ -0,0 +1,14 @@ +<!-- include start from dns/dynamic-service-zone.xml.i --> +<leafNode name="zone"> + <properties> + <help>DNS zone to be updated</help> + <valueHelp> + <format>txt</format> + <description>Name of DNS zone</description> + </valueHelp> + <constraint> + <validator name="fqdn"/> + </constraint> + </properties> +</leafNode> +<!-- include end --> |