diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-06-24 11:26:48 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-06-24 11:26:48 +0100 |
commit | e507d0867326782bf93ed703ca877ca31dead2d6 (patch) | |
tree | 4d42fed3915745b09dd282e0db3fbaee842a628b /src | |
parent | 3caf131cae11d9ed0f81d632afea5ea3e6f8b8d3 (diff) | |
download | vyos-1x-e507d0867326782bf93ed703ca877ca31dead2d6.tar.gz vyos-1x-e507d0867326782bf93ed703ca877ca31dead2d6.zip |
dictconfig: T2637: identify sub-interfaces (vif) to delete
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/interfaces-ethernet.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-ethernet.py b/src/conf_mode/interfaces-ethernet.py index 8d657acba..8b895c4d2 100755 --- a/src/conf_mode/interfaces-ethernet.py +++ b/src/conf_mode/interfaces-ethernet.py @@ -187,6 +187,9 @@ def generate(eth): def apply(eth): e = EthernetIf(eth['intf']) if eth['deleted']: + # apply all vlans to interface (they need removing too) + apply_all_vlans(e, eth) + # delete interface e.remove() else: @@ -304,7 +307,6 @@ def apply(eth): # apply all vlans to interface apply_all_vlans(e, eth) - return None if __name__ == '__main__': try: |