diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-07 14:24:30 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-20 21:28:53 +0200 |
commit | 4ae44c074e15fa102718d5a4512c23db447d6dc8 (patch) | |
tree | 8a58e052ab8640b7a2581cfa940ac062e907173c /src/conf_mode/interface-bonding.py | |
parent | 81617be4869483abb4a921d8c14f01794649ab57 (diff) | |
download | vyos-1x-4ae44c074e15fa102718d5a4512c23db447d6dc8.tar.gz vyos-1x-4ae44c074e15fa102718d5a4512c23db447d6dc8.zip |
Python/ifconfig: T1557: rename EthernetIf -> VLANIf
An Ethernet Interface will provide additional functionality (link speed/duplex)
which is not available for a Bond Interface, but both share the same VLAN
capabilities.
Diffstat (limited to 'src/conf_mode/interface-bonding.py')
-rwxr-xr-x | src/conf_mode/interface-bonding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py index ac3e1b867..0d5f9f6b7 100755 --- a/src/conf_mode/interface-bonding.py +++ b/src/conf_mode/interface-bonding.py @@ -22,7 +22,7 @@ from copy import deepcopy from sys import exit from netifaces import interfaces -from vyos.ifconfig import BondIf, EthernetIf +from vyos.ifconfig import BondIf, VLANIf from vyos.configdict import list_diff, vlan_to_dict from vyos.config import Config from vyos import ConfigError @@ -82,7 +82,7 @@ def apply_vlan_config(vlan, config): to a VLAN interface """ - if type(vlan) != type(EthernetIf("lo")): + if type(vlan) != type(VLANIf("lo")): raise TypeError() # update interface description used e.g. within SNMP |