parent
149339f620
commit
78b9a11ccf
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