mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-14 19:20:04 -04:00
WaitForIP should not return an error if an IP is not found (#10321)
This commit is contained in:
parent
fab442eb52
commit
89199a4c57
1 changed files with 2 additions and 1 deletions
|
|
@ -658,7 +658,8 @@ func (vm *VirtualMachineDriver) WaitForIP(ctx context.Context, ipNet *net.IPNet)
|
|||
}
|
||||
}
|
||||
|
||||
return "", fmt.Errorf("unable to find an IP")
|
||||
// unable to find an IP
|
||||
return "", nil
|
||||
}
|
||||
|
||||
func (vm *VirtualMachineDriver) PowerOff() error {
|
||||
|
|
|
|||
Loading…
Reference in a new issue