provisioner/shell: Use RemoteCmd.Wait

This commit is contained in:
Mitchell Hashimoto 2013-06-03 10:56:12 -07:00
parent bbc5f305e2
commit 37937c1290

View File

@ -11,7 +11,6 @@ import (
"log"
"os"
"strings"
"time"
)
const DefaultRemotePath = "/tmp/script.sh"
@ -80,10 +79,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) {
defer stdout_w.Close()
defer stderr_w.Close()
for !cmd.Exited {
time.Sleep(50 * time.Millisecond)
}
cmd.Wait()
exitChan <- cmd.ExitStatus
}()