Commit 37937c12 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

provisioner/shell: Use RemoteCmd.Wait

parent bbc5f305
......@@ -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
}()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment