diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-12-31 12:58:24 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-12-31 12:58:24 +0100 |
commit | 432d98347ab3fbb737796081e122b6c69a3bbb8f (patch) | |
tree | 951eb3334b66a024671911c7e9b864f11f7424a0 | |
parent | b86f752fc6163938c879a3274777170b76800495 (diff) | |
download | vyos-1x-432d98347ab3fbb737796081e122b6c69a3bbb8f.tar.gz vyos-1x-432d98347ab3fbb737796081e122b6c69a3bbb8f.zip |
T1112: migrate BGP redistribute metric and route-map options too.
-rwxr-xr-x | src/migration-scripts/quagga/2-to-3 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/migration-scripts/quagga/2-to-3 b/src/migration-scripts/quagga/2-to-3 index 88063470f..4c1cd86a3 100755 --- a/src/migration-scripts/quagga/2-to-3 +++ b/src/migration-scripts/quagga/2-to-3 @@ -186,6 +186,12 @@ else: redistributes = config.list_nodes(redistribute_path) for redistribute in redistributes: config.set(bgp_path + af_path + ['redistribute', redistribute]) + if config.exists(redistribute_path + [redistribute, 'metric']): + redist_metric = config.return_value(redistribute_path + [redistribute, 'metric']) + config.set(bgp_path + af_path + ['redistribute', redistribute, 'metric'], value=redist_metric) + if config.exists(redistribute_path + [redistribute, 'route-map']): + redist_route_map = config.return_value(redistribute_path + [redistribute, 'route-map']) + config.set(bgp_path + af_path + ['redistribute', redistribute, 'route-map'], value=redist_route_map) config.delete(redistribute_path) |