mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 09:44:01 -04:00
builder/amazonebs: Handle interrupts while waiting for SSH
This commit is contained in:
@@ -83,6 +83,11 @@ ConnectWaitLoop:
|
||||
case <-timeout:
|
||||
ui.Error("Timeout while waiting to connect to SSH.")
|
||||
return multistep.ActionHalt
|
||||
case <-time.After(1 * time.Second):
|
||||
if _, ok := state[multistep.StateCancelled]; ok {
|
||||
log.Println("Interrupt detected, quitting waiting for SSH.")
|
||||
return multistep.ActionHalt
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user