provisioner/shell: Use RemoteCmd.Wait
This commit is contained in:
parent
bbc5f305e2
commit
37937c1290
@ -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
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user