diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-15 15:25:29 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-20 21:28:53 +0200 |
commit | fd154227c90c0b0dd10bb14ee5b7585ec2970c22 (patch) | |
tree | ca528d113f7a078e2d87c9cd1b644e179e0de6e1 | |
parent | 033b32b20a7a277d2da180388aba78e30c2ed074 (diff) | |
download | vyos-1x-fd154227c90c0b0dd10bb14ee5b7585ec2970c22.tar.gz vyos-1x-fd154227c90c0b0dd10bb14ee5b7585ec2970c22.zip |
bonding: T1614: minor comment cleanup
-rwxr-xr-x | src/conf_mode/interface-bonding.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py index 0d5f9f6b7..9049913e6 100755 --- a/src/conf_mode/interface-bonding.py +++ b/src/conf_mode/interface-bonding.py @@ -334,8 +334,7 @@ def apply(bond): b = BondIf(bond['intf']) if bond['deleted']: - # - # delete bonding interface + # delete interface b.remove() else: # Some parameters can not be changed when the bond is up. |