diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-15 19:31:34 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-15 19:31:34 +0200 |
commit | 6e169b011569bddd0c07d476528a3ecad56e6499 (patch) | |
tree | 4f642845b64963efe4de13aee7cad5c707eb2029 | |
parent | 277c1c7741416314f958c5edc085193ba48aace1 (diff) | |
download | vyos-1x-6e169b011569bddd0c07d476528a3ecad56e6499.tar.gz vyos-1x-6e169b011569bddd0c07d476528a3ecad56e6499.zip |
bonding: T1614: do not overwrite interface description with interface name
-rwxr-xr-x | src/conf_mode/interface-bonding.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py index fb8837856..f0a33beff 100755 --- a/src/conf_mode/interface-bonding.py +++ b/src/conf_mode/interface-bonding.py @@ -157,8 +157,6 @@ def get_config(): # retrieve interface description if conf.exists('description'): bond['description'] = conf.return_value('description') - else: - bond['description'] = bond['intf'] # get DHCP client identifier if conf.exists('dhcp-options client-id'): |