diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-20 21:01:59 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-20 21:07:38 +0200 |
commit | 2fe39c3f4d7408509273c9e2ac400437aba9616f (patch) | |
tree | 77a6a14dd42c538e5d6403603031ea36cf5172a2 /interface-definitions/service_pppoe-server.xml.in | |
parent | ee2db552acc7ab118897d538673b61794298ca06 (diff) | |
download | vyos-1x-2fe39c3f4d7408509273c9e2ac400437aba9616f.tar.gz vyos-1x-2fe39c3f4d7408509273c9e2ac400437aba9616f.zip |
xml: T3488: when using regex one must use ^ and $ when checking string literals
(cherry picked from commit 85d0ae7b434a3ae9f3bd50ad7fee1fcd23b26a26)
Diffstat (limited to 'interface-definitions/service_pppoe-server.xml.in')
-rw-r--r-- | interface-definitions/service_pppoe-server.xml.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interface-definitions/service_pppoe-server.xml.in b/interface-definitions/service_pppoe-server.xml.in index 1d3e8ba29..dc8af67af 100644 --- a/interface-definitions/service_pppoe-server.xml.in +++ b/interface-definitions/service_pppoe-server.xml.in @@ -38,7 +38,7 @@ <list>ifname ifname:mac</list> </completionHelp> <constraint> - <regex>(ifname|ifname:mac)</regex> + <regex>^(ifname|ifname:mac)$</regex> </constraint> <constraintErrorMessage>Invalid Called-Station-Id format</constraintErrorMessage> <valueHelp> @@ -168,7 +168,7 @@ <properties> <help>IPv4 (IPCP) negotiation algorithm</help> <constraint> - <regex>(deny|allow|prefer|require)</regex> + <regex>^(deny|allow|prefer|require)$</regex> </constraint> <constraintErrorMessage>invalid value</constraintErrorMessage> <valueHelp> @@ -196,7 +196,7 @@ <properties> <help>IPv6 (IPCP6) negotiation algorithm</help> <constraint> - <regex>(deny|allow|prefer|require)</regex> + <regex>^(deny|allow|prefer|require)$</regex> </constraint> <constraintErrorMessage>invalid value</constraintErrorMessage> <valueHelp> |