builder/qemu: timeout waiting for the guest to become available in the network bridge

This commit is contained in:
Rui Lopes 2020-05-24 12:12:20 +01:00
parent 688ed63edf
commit 4839b9189d
2 changed files with 9 additions and 5 deletions

View File

@ -639,7 +639,9 @@ func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (pack
if b.config.Comm.Type != "none" && b.config.NetBridge != "" {
steps = append(steps,
new(stepWaitGuestAddress),
&stepWaitGuestAddress{
timeout: b.config.Comm.SSHTimeout,
},
)
}

View File

@ -18,12 +18,16 @@ import (
// This step waits for the guest address to become available in the network
// bridge, then it sets the guestAddress state property.
type stepWaitGuestAddress struct{}
type stepWaitGuestAddress struct {
timeout time.Duration
}
func (s *stepWaitGuestAddress) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
config := state.Get("config").(*Config)
ui := state.Get("ui").(packer.Ui)
qmpMonitor := state.Get("qmp_monitor").(*qmp.SocketMonitor)
ctx, cancel := context.WithTimeout(ctx, s.timeout)
defer cancel()
ui.Say(fmt.Sprintf("Waiting for the guest address to become available in the %s network bridge...", config.NetBridge))
for {
@ -31,7 +35,7 @@ func (s *stepWaitGuestAddress) Run(ctx context.Context, state multistep.StateBag
if guestAddress != "" {
log.Printf("Found guest address %s", guestAddress)
state.Put("guestAddress", guestAddress)
break
return multistep.ActionContinue
}
select {
case <-time.After(10 * time.Second):
@ -40,8 +44,6 @@ func (s *stepWaitGuestAddress) Run(ctx context.Context, state multistep.StateBag
return multistep.ActionHalt
}
}
return multistep.ActionContinue
}
func (s *stepWaitGuestAddress) Cleanup(state multistep.StateBag) {