diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-28 11:25:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 11:25:03 +0100 |
commit | 09ac6734678660dfb12e058da68cf88ddeea4dce (patch) | |
tree | fdd28271219b70430a1a6437186af437317c3320 /python/vyos/ifconfig/bond.py | |
parent | c423848d2e4816df598ad0269edf3da652a7c53f (diff) | |
parent | 627d1c704c83efe973b16db61005aacb1a96aead (diff) | |
download | vyos-1x-09ac6734678660dfb12e058da68cf88ddeea4dce.tar.gz vyos-1x-09ac6734678660dfb12e058da68cf88ddeea4dce.zip |
Merge pull request #275 from thomas-mangin/T2057-oper-admin
ifconfig: T2057: explicity name state functions
Diffstat (limited to 'python/vyos/ifconfig/bond.py')
-rw-r--r-- | python/vyos/ifconfig/bond.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/vyos/ifconfig/bond.py b/python/vyos/ifconfig/bond.py index 3c26b9b95..e2ff71490 100644 --- a/python/vyos/ifconfig/bond.py +++ b/python/vyos/ifconfig/bond.py @@ -101,7 +101,7 @@ class BondIf(Interface): for s in self.get_slaves(): slave = { 'ifname': s, - 'state': Interface(s).get_state() + 'state': Interface(s).get_admin_state() } slave_list.append(slave) @@ -112,7 +112,7 @@ class BondIf(Interface): # physical interface for slave in slave_list: i = Interface(slave['ifname']) - i.set_state(slave['state']) + i.set_admin_state(slave['state']) def set_hash_policy(self, mode): """ @@ -211,7 +211,7 @@ class BondIf(Interface): # An interface can only be added to a bond if it is in 'down' state. If # interface is in 'up' state, the following Kernel error will be thrown: # bond0: eth1 is up - this may be due to an out of date ifenslave. - Interface(interface).set_state('down') + Interface(interface).set_admin_state('down') return self.set_interface('bond_add_port', f'+{interface}') def del_port(self, interface): |