diff options
| author | Christian Breunig <christian@breunig.cc> | 2023-04-13 09:04:08 +0200 | 
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2023-04-13 09:04:09 +0200 | 
| commit | 64871ad75ab028cbc6d8fcbb5e334c8944954162 (patch) | |
| tree | 4e275f13fdba8c0a465c8c37dd2d52c6ff1d83d6 | |
| parent | 8993298bc2c9d3e796d658dc71ba6ae6afedc4c3 (diff) | |
| download | vyos-1x-64871ad75ab028cbc6d8fcbb5e334c8944954162.tar.gz vyos-1x-64871ad75ab028cbc6d8fcbb5e334c8944954162.zip | |
xml: dns: T5143: valueHelp format should be txt instead of text
The (v)bash completion helpers trigger on the "txt" keyword for the valueHelp
strings when asking for the tab completion helper.
Replace text -> txt
| -rw-r--r-- | interface-definitions/dns-forwarding.xml.in | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/interface-definitions/dns-forwarding.xml.in b/interface-definitions/dns-forwarding.xml.in index 2b6892ce5..6b7344b1d 100644 --- a/interface-definitions/dns-forwarding.xml.in +++ b/interface-definitions/dns-forwarding.xml.in @@ -84,7 +84,7 @@                  <properties>                    <help>Domain to forward to a custom DNS server</help>                    <valueHelp> -                    <format>text</format> +                    <format>txt</format>                      <description>An absolute DNS domain name</description>                    </valueHelp>                    <constraint> @@ -111,7 +111,7 @@                  <properties>                    <help>Domain to host authoritative records for</help>                    <valueHelp> -                    <format>text</format> +                    <format>txt</format>                      <description>An absolute DNS domain name</description>                    </valueHelp>                    <constraint> @@ -128,7 +128,7 @@                          <properties>                            <help>"A" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -165,7 +165,7 @@                          <properties>                            <help>"AAAA" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -202,7 +202,7 @@                          <properties>                            <help>"CNAME" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -234,7 +234,7 @@                          <properties>                            <help>"MX" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -281,7 +281,7 @@                          <properties>                            <help>"PTR" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -313,7 +313,7 @@                          <properties>                            <help>"TXT" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -329,7 +329,7 @@                              <properties>                                <help>Record contents</help>                                <valueHelp> -                                <format>text</format> +                                <format>txt</format>                                  <description>Record contents</description>                                </valueHelp>                                <multi/> @@ -343,7 +343,7 @@                          <properties>                            <help>"SPF" record (type=SPF)</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -359,7 +359,7 @@                              <properties>                                <help>Record contents</help>                                <valueHelp> -                                <format>text</format> +                                <format>txt</format>                                  <description>Record contents</description>                                </valueHelp>                              </properties> @@ -372,7 +372,7 @@                          <properties>                            <help>"SRV" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> @@ -456,7 +456,7 @@                          <properties>                            <help>"NAPTR" record</help>                            <valueHelp> -                            <format>text</format> +                            <format>txt</format>                              <description>A DNS name relative to the root record</description>                            </valueHelp>                            <valueHelp> | 
