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 /src/conf_mode/interfaces-bonding.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 'src/conf_mode/interfaces-bonding.py')
-rwxr-xr-x | src/conf_mode/interfaces-bonding.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_mode/interfaces-bonding.py b/src/conf_mode/interfaces-bonding.py index 03df6e16a..9b6401ab6 100755 --- a/src/conf_mode/interfaces-bonding.py +++ b/src/conf_mode/interfaces-bonding.py @@ -431,7 +431,7 @@ def apply(bond): # Some parameters can not be changed when the bond is up. if bond['shutdown_required']: # Disable bond prior changing of certain properties - b.set_state('down') + b.set_admin_state('down') # The bonding mode can not be changed when there are interfaces enslaved # to this bond, thus we will free all interfaces from the bond first! @@ -449,9 +449,9 @@ def apply(bond): # parameters we will only re-enable the interface if it is not # administratively disabled if not bond['disable']: - b.set_state('up') + b.set_admin_state('up') else: - b.set_state('down') + b.set_admin_state('down') # Configure interface address(es) # - not longer required addresses get removed first |