Commit 74cbeb12 by James Cammarata

Default interface type to ipv4 when checking flags for Solaris

Fixes #8330
parent bc2099b1
......@@ -2042,8 +2042,7 @@ class SunOSNetwork(GenericBsdIfconfigNetwork, Network):
else:
current_if = interfaces[device]
flags = self.get_options(words[1])
if 'IPv4' in flags:
v = 'ipv4'
v = 'ipv4'
if 'IPv6' in flags:
v = 'ipv6'
current_if[v].append({'flags': flags, 'mtu': words[3]})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment