From 022a115d190a4c6eef332bf3358af75991d26c3e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 13 Jun 2015 22:42:10 -0700 Subject: [PATCH] builder/amazon: improve messaging --- builder/amazon/common/step_get_password.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/amazon/common/step_get_password.go b/builder/amazon/common/step_get_password.go index a2ef04952..0fdd467eb 100644 --- a/builder/amazon/common/step_get_password.go +++ b/builder/amazon/common/step_get_password.go @@ -46,6 +46,9 @@ func (s *StepGetPassword) Run(state multistep.StateBag) multistep.StepAction { waitDone := make(chan bool, 1) go func() { ui.Say("Waiting for auto-generated password for instance...") + ui.Message( + "It is normal for this process to take up to 15 minutes,\n" + + "but it usually takes around 5. Please wait.") password, err = s.waitForPassword(state, cancel) waitDone <- true }()