diff options
| author | Nicolas Fort <nicolasfort1988@gmail.com> | 2024-03-15 21:35:57 +0000 | 
|---|---|---|
| committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2024-03-15 21:35:57 +0000 | 
| commit | 1048f49e403d7ce3df379bbf48e7fcc60a74e67b (patch) | |
| tree | bd536a6a571f364663687333e5d71cf8309ae9bf /src | |
| parent | f237e75e9fd156c2e4ce15dd6ca8fd4d5d8790cc (diff) | |
| download | vyos-1x-1048f49e403d7ce3df379bbf48e7fcc60a74e67b.tar.gz vyos-1x-1048f49e403d7ce3df379bbf48e7fcc60a74e67b.zip | |
T6090: fix policy route migration script. Ensure that tcp flags migration occurs also if only <policy route> is defined.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/migration-scripts/policy/1-to-2 | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/src/migration-scripts/policy/1-to-2 b/src/migration-scripts/policy/1-to-2 index c70490ce9..c7a983bba 100755 --- a/src/migration-scripts/policy/1-to-2 +++ b/src/migration-scripts/policy/1-to-2 @@ -32,23 +32,23 @@ file_name = argv[1]  with open(file_name, 'r') as f:      config_file = f.read() -base = ['policy', 'ipv6-route'] +base = ['policy']  config = ConfigTree(config_file)  if not config.exists(base):      # Nothing to do      exit(0) -config.rename(base, 'route6') -config.set_tag(['policy', 'route6']) +if config.exists(base + ['ipv6-route']): +    config.rename(base + ['ipv6-route'],'route6') +    config.set_tag(['policy', 'route6'])  for route in ['route', 'route6']: -    route_path = ['policy', route] -    if config.exists(route_path): -        for name in config.list_nodes(route_path): -            if config.exists(route_path + [name, 'rule']): -                for rule in config.list_nodes(route_path + [name, 'rule']): -                    rule_tcp_flags = route_path + [name, 'rule', rule, 'tcp', 'flags'] +    if config.exists(base + [route]): +        for name in config.list_nodes(base + [route]): +            if config.exists(base + [route, name, 'rule']): +                for rule in config.list_nodes(base + [route, name, 'rule']): +                    rule_tcp_flags = base + [route, name, 'rule', rule, 'tcp', 'flags']                      if config.exists(rule_tcp_flags):                          tmp = config.return_value(rule_tcp_flags) | 
