Default interface type to ipv4 when checking flags for Solaris

Fixes #8330
This commit is contained in:
James Cammarata 2014-07-30 15:06:50 -05:00
parent bc2099b1ab
commit 74cbeb1292

View file

@ -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]})