diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-03-16 12:22:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 12:22:10 +0100 |
commit | d18d773238efc34026a580fc7f5f79c408ea8cfa (patch) | |
tree | 2ea2083c54e6337e1a5179b577ab4b2596d5d61e | |
parent | a0b2b259484d5602f1faa0fbb6e60cd0e0b58a35 (diff) | |
parent | 4413e5b633c616f9bc16d9e09d0551dfe9ae2ab1 (diff) | |
download | vyos-1x-d18d773238efc34026a580fc7f5f79c408ea8cfa.tar.gz vyos-1x-d18d773238efc34026a580fc7f5f79c408ea8cfa.zip |
Merge pull request #3138 from vyos/mergify/bp/sagitta/pr-3137
T6090: policy: fix migration script (backport #3137)
-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) |