mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #24213 from The-Loeki/patch-3
ShouldFix _- troubles in debian_ip
This commit is contained in:
commit
9825160b1a
1 changed files with 2 additions and 6 deletions
|
@ -591,17 +591,13 @@ def _parse_interfaces(interface_files=None):
|
|||
iface_dict['ethtool'][attr] = valuestr
|
||||
|
||||
elif attr.startswith('bond'):
|
||||
if '-' in attr:
|
||||
opt = attr.split('-', 1)[1]
|
||||
elif '_' in attr:
|
||||
# Just in case configuration still has bond_
|
||||
opt = attr.split('_', 1)[1]
|
||||
opt = re.split(r'[_-]', attr, maxsplit=1)[1]
|
||||
if 'bonding' not in iface_dict:
|
||||
iface_dict['bonding'] = salt.utils.odict.OrderedDict()
|
||||
iface_dict['bonding'][opt] = valuestr
|
||||
|
||||
elif attr.startswith('bridge'):
|
||||
opt = attr.split('-', 1)[1]
|
||||
opt = re.split(r'[_-]', attr, maxsplit=1)[1]
|
||||
if 'bridging' not in iface_dict:
|
||||
iface_dict['bridging'] = salt.utils.odict.OrderedDict()
|
||||
iface_dict['bridging'][opt] = valuestr
|
||||
|
|
Loading…
Add table
Reference in a new issue