added conditional for temporary interfaces
This commit is contained in:
parent
6fd1c05045
commit
dcc7a755c9
|
@ -22,6 +22,7 @@ module VagrantPlugins
|
|||
machine.communicate.execute("#{su_cmd} ipadm create-addr -T static -a #{network[:ip]}/#{cidr} #{device}/v4")
|
||||
elsif network[:type].to_sym == :dhcp
|
||||
#machine.communicate.execute("#{ifconfig_cmd} dhcp start")
|
||||
if machine.communicate.test("ipadm show-if -o all | grep #{device} | tr -s ' ' | cut -d ' ' -f 6 | grep '4\|6'")
|
||||
machine.communicate.execute("#{su_cmd} ipadm create-addr -T addrconf #{device}/v4")
|
||||
end
|
||||
end
|
||||
|
@ -29,4 +30,5 @@ module VagrantPlugins
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue