mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
commit
f1ce9abe0d
1 changed files with 3 additions and 1 deletions
|
@ -1721,7 +1721,9 @@ class GenericBsdIfconfigNetwork(Network):
|
||||||
if line:
|
if line:
|
||||||
words = line.split()
|
words = line.split()
|
||||||
|
|
||||||
if re.match('^\S', line) and len(words) > 3:
|
if words[0] == 'pass':
|
||||||
|
continue
|
||||||
|
elif re.match('^\S', line) and len(words) > 3:
|
||||||
current_if = self.parse_interface_line(words)
|
current_if = self.parse_interface_line(words)
|
||||||
interfaces[ current_if['device'] ] = current_if
|
interfaces[ current_if['device'] ] = current_if
|
||||||
elif words[0].startswith('options='):
|
elif words[0].startswith('options='):
|
||||||
|
|
Loading…
Reference in a new issue