diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-24 08:33:23 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-24 10:45:48 +0200 |
commit | f0020ef10d601c5e8dbcc4ed8fb1dab402170c9e (patch) | |
tree | 6b04488682723815f9390b8f3e4ec1762c64b09e /src/migration-scripts/interfaces/5-to-6 | |
parent | 856800bf75d408700d704921ffd592f6c99f84be (diff) | |
download | vyos-1x-f0020ef10d601c5e8dbcc4ed8fb1dab402170c9e.tar.gz vyos-1x-f0020ef10d601c5e8dbcc4ed8fb1dab402170c9e.zip |
router-advert: T3561: fix inconsistent use of tabs and spaces in indentation
Commit c17f259d ("router-advert: T3561: add support for specific routes") used
tabs over spaces in the Migration script which triggered a TabError (inconsistent
use of tabs and spaces in indentation").
(cherry picked from commit acc701bac3483a3242c77a2e00c076890e27eea9)
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): |