mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Accept interfaces without address family or method (#34200)
This commit is contained in:
parent
15b0371eb2
commit
79b0739ba2
1 changed files with 9 additions and 8 deletions
|
@ -208,14 +208,15 @@ def read_interfaces_lines(module, line_strings):
|
|||
"down": [],
|
||||
"post-up": []
|
||||
}
|
||||
iface_name, address_family_name, method_name = words[1:4]
|
||||
if len(words) != 4:
|
||||
module.fail_json(msg="Incorrect number of parameters (%d) in line %d, must be exectly 3" % (len(words), i))
|
||||
# TODO: put line and count parameters
|
||||
return None, None
|
||||
|
||||
currif['address_family'] = address_family_name
|
||||
currif['method'] = method_name
|
||||
iface_name = words[1]
|
||||
try:
|
||||
currif['address_family'] = words[2]
|
||||
except IndexError:
|
||||
currif['address_family'] = None
|
||||
try:
|
||||
currif['method'] = words[3]
|
||||
except IndexError:
|
||||
currif['method'] = None
|
||||
|
||||
ifaces[iface_name] = currif
|
||||
lines.append({'line': line, 'iface': iface_name, 'line_type': 'iface', 'params': currif})
|
||||
|
|
Loading…
Reference in a new issue