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