diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-09 18:57:56 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-09 18:58:19 +0200 |
commit | 9e675511c3fc7574da04bf4e804cd05e5f78539b (patch) | |
tree | 9cf410c9ea7f612934980a910dc42c4a8221d916 | |
parent | 0328ec77024df55462f2e21595f717c98f91f6e0 (diff) | |
download | vyatta-cfg-quagga-9e675511c3fc7574da04bf4e804cd05e5f78539b.tar.gz vyatta-cfg-quagga-9e675511c3fc7574da04bf4e804cd05e5f78539b.zip |
policy: T3531: Allow route-map names to contain an underscore
(cherry picked from commit b0f75452279f16bc301333c801766de037fdbe0d)
-rw-r--r-- | templates/policy/route-map/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/policy/route-map/node.def b/templates/policy/route-map/node.def index 1a3fd8b7..bbbc5f74 100644 --- a/templates/policy/route-map/node.def +++ b/templates/policy/route-map/node.def @@ -4,4 +4,4 @@ type: txt help: IP route-map val_help: Route map name -syntax:expression: pattern $VAR(@) "^[-a-zA-Z0-9.]+$" ; "route-map $VAR(@): name must be alpha-numeric" +syntax:expression: pattern $VAR(@) "^[-_a-zA-Z0-9.]+$" ; "route-map $VAR(@): can only contain alpha-numeric letters, hyphen and underscores" |