diff options
Diffstat (limited to 'src/migration-scripts/interfaces/5-to-6')
-rwxr-xr-x | src/migration-scripts/interfaces/5-to-6 | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/migration-scripts/interfaces/5-to-6 b/src/migration-scripts/interfaces/5-to-6 index 8ae34c208..ae79c1d1b 100755 --- a/src/migration-scripts/interfaces/5-to-6 +++ b/src/migration-scripts/interfaces/5-to-6 @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2020-2021 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -55,16 +55,16 @@ def copy_rtradv(c, old_base, interface): min_max = interval.split('-')[0] c.set(new_base + ['interval', min_max], value=tmp) - # cleanup boolean nodes in individual route - route_base = new_base + ['route'] - if c.exists(route_base): - for route in config.list_nodes(route_base): - if c.exists(route_base + [route, 'remove-route']): - tmp = c.return_value(route_base + [route, 'remove-route']) - c.delete(route_base + [route, 'remove-route']) - if tmp == 'false': - c.set(route_base + [route, 'no-remove-route']) - + # cleanup boolean nodes in individual route + route_base = new_base + ['route'] + if c.exists(route_base): + for route in config.list_nodes(route_base): + if c.exists(route_base + [route, 'remove-route']): + tmp = c.return_value(route_base + [route, 'remove-route']) + c.delete(route_base + [route, 'remove-route']) + if tmp == 'false': + c.set(route_base + [route, 'no-remove-route']) + # cleanup boolean nodes in individual prefix prefix_base = new_base + ['prefix'] if c.exists(prefix_base): |