diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 11:50:22 +0000 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 11:50:22 +0000 |
commit | 193d0f416807b3eb5980dcf209e93774282b85f3 (patch) | |
tree | 1e7a2597872b04bc8e5af69d32a33b8b7ce4c4e8 /src/conf_mode/interfaces-bonding.py | |
parent | f71a7461e44a98e862810bed3d0b9d280ee5dae0 (diff) | |
download | vyos-1x-193d0f416807b3eb5980dcf209e93774282b85f3.tar.gz vyos-1x-193d0f416807b3eb5980dcf209e93774282b85f3.zip |
ifconfig: T31: convert all interface to set_vrf api
Diffstat (limited to 'src/conf_mode/interfaces-bonding.py')
-rwxr-xr-x | src/conf_mode/interfaces-bonding.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/conf_mode/interfaces-bonding.py b/src/conf_mode/interfaces-bonding.py index a75beabd1..03df6e16a 100755 --- a/src/conf_mode/interfaces-bonding.py +++ b/src/conf_mode/interfaces-bonding.py @@ -461,11 +461,8 @@ def apply(bond): for addr in bond['address']: b.add_addr(addr) - # assign to VRF - if bond['vrf']: - b.add_vrf(bond['vrf']) - else: - b.del_vrf(bond['vrf']) + # assign/remove VRF + b.set_vrf(bond['vrf']) # remove no longer required service VLAN interfaces (vif-s) for vif_s in bond['vif_s_remove']: |