Add a pause to ensure SSH has a chance to start. This is a tempoary workaround for the fact that the SSH tunnel code will cause packer to halt if the destination does not exist.

Signed-off-by: Rob Dobson <rob.dobson@citrix.com>
This commit is contained in:
Rob Dobson 2014-11-24 18:16:56 +00:00
parent d0746481e7
commit fd35d7c984

View File

@ -104,6 +104,7 @@ func (self *stepStartOnHIMN) Run(state multistep.StateBag) multistep.StepAction
return multistep.ActionHalt
}
time.Sleep(10 * time.Second)
return multistep.ActionContinue