provisioner/shell: retry file delete [GH-2286]
This commit is contained in:
parent
f41429b6b4
commit
6ec428cc38
|
@ -270,16 +270,25 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
||||||
return fmt.Errorf("Script exited with non-zero exit status: %d", cmd.ExitStatus)
|
return fmt.Errorf("Script exited with non-zero exit status: %d", cmd.ExitStatus)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete the temporary file we created
|
// Delete the temporary file we created. We retry this a few times
|
||||||
cmd = &packer.RemoteCmd{
|
// since if the above rebooted we have to wait until the reboot
|
||||||
Command: fmt.Sprintf("rm -f %s", p.config.RemotePath),
|
// completes.
|
||||||
|
err = p.retryable(func() error {
|
||||||
|
cmd = &packer.RemoteCmd{
|
||||||
|
Command: fmt.Sprintf("rm -f %s", p.config.RemotePath),
|
||||||
|
}
|
||||||
|
if err := comm.Start(cmd); err != nil {
|
||||||
|
return fmt.Errorf(
|
||||||
|
"Error removing temporary script at %s: %s",
|
||||||
|
p.config.RemotePath, err)
|
||||||
|
}
|
||||||
|
cmd.Wait()
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
if err := comm.Start(cmd); err != nil {
|
|
||||||
return fmt.Errorf(
|
|
||||||
"Error removing temporary script at %s: %s",
|
|
||||||
p.config.RemotePath, err)
|
|
||||||
}
|
|
||||||
cmd.Wait()
|
|
||||||
if cmd.ExitStatus != 0 {
|
if cmd.ExitStatus != 0 {
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
"Error removing temporary script at %s!",
|
"Error removing temporary script at %s!",
|
||||||
|
|
Loading…
Reference in New Issue