From 73cc357b757eb6129db286709812996ebcc4fd19 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 24 Jan 2021 19:27:45 +0100 Subject: ospf(v3): T3236: T3244: adjust to route-map converted name (_ for -) A hyphen in a route-map name will be converted to _, take care about this effect during validation. --- python/vyos/configverify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/vyos/configverify.py') diff --git a/python/vyos/configverify.py b/python/vyos/configverify.py index de88310e8..abd91583d 100644 --- a/python/vyos/configverify.py +++ b/python/vyos/configverify.py @@ -323,7 +323,9 @@ def verify_route_maps(config): if 'redistribute' in config: for protocol, protocol_config in config['redistribute'].items(): if 'route_map' in protocol_config: - route_map = protocol_config['route_map'] + # A hyphen in a route-map name will be converted to _, take care + # about this effect during validation + route_map = protocol_config['route_map'].replace('-','_') # Check if the specified route-map exists, if not error out if dict_search(f'policy.route_map.{route_map}', config) == None: raise ConfigError(f'Redistribution route-map "{route_map}" ' \ -- cgit v1.2.3