diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-15 16:41:33 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-01-15 16:41:33 +0100 |
commit | 495c3c3cc646c378746dc458f30da72c85f16dba (patch) | |
tree | 05bdf37a51e7bf18fe7330eae59eef57a6d061f3 /src/migration-scripts/ospf/0-to-1 | |
parent | b303d7b0c612150dc733c330127121cc46eb0be4 (diff) | |
download | vyos-1x-495c3c3cc646c378746dc458f30da72c85f16dba.tar.gz vyos-1x-495c3c3cc646c378746dc458f30da72c85f16dba.zip |
ospf: T5936: when migrating passive interfaces set_tag() must be set
Diffstat (limited to 'src/migration-scripts/ospf/0-to-1')
-rwxr-xr-x | src/migration-scripts/ospf/0-to-1 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/migration-scripts/ospf/0-to-1 b/src/migration-scripts/ospf/0-to-1 index 8f02acada..a6cb9feb8 100755 --- a/src/migration-scripts/ospf/0-to-1 +++ b/src/migration-scripts/ospf/0-to-1 @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2021 VyOS maintainers and contributors +# Copyright (C) 2021-2024 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 @@ -28,6 +28,7 @@ def ospf_passive_migration(config, ospf_base): default = True continue config.set(ospf_base + ['interface', interface, 'passive']) + config.set_tag(ospf_base + ['interface']) config.delete(ospf_base + ['passive-interface']) config.set(ospf_base + ['passive-interface'], value='default') @@ -35,6 +36,7 @@ def ospf_passive_migration(config, ospf_base): if config.exists(ospf_base + ['passive-interface-exclude']): for interface in config.return_values(ospf_base + ['passive-interface-exclude']): config.set(ospf_base + ['interface', interface, 'passive', 'disable']) + config.set_tag(ospf_base + ['interface']) config.delete(ospf_base + ['passive-interface-exclude']) if len(argv) < 2: |