From 6da2d56d7d7d1235fd336a378addefdb98444c13 Mon Sep 17 00:00:00 2001 From: Brooks Swinnerton Date: Wed, 7 Nov 2018 20:53:07 -0500 Subject: T979: Allow spaces in wireguard interface descrs Previous to this commit, setting a Wireguard interface description would result in a validation error similar to the following: ``` brooks@border# set interfaces wireguard wg0 description "Tunnel" [edit] brooks@border# set interfaces wireguard wg0 description "Tunnel tunnel tunnel" interface description is too long (limit 100 characters) Value validation failed Set failed [edit] ``` This commit makes the regex less restrictive up to 100 characters. --- interface-definitions/wireguard.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'interface-definitions') diff --git a/interface-definitions/wireguard.xml b/interface-definitions/wireguard.xml index 3bf7bcd33..1ead24c0d 100644 --- a/interface-definitions/wireguard.xml +++ b/interface-definitions/wireguard.xml @@ -18,7 +18,7 @@ - IP address + IP address ipv4net IPv4 address and prefix length @@ -34,7 +34,7 @@ description - [^ ]{1,100}$ + ^.{1,100}$ interface description is too long (limit 100 characters) @@ -110,7 +110,7 @@ how often send keep alives in seconds - + -- cgit v1.2.3