builder/vmware: sleep before cleaning files on Windows

This commit is contained in:
Mitchell Hashimoto 2013-07-31 15:35:47 -07:00
parent d76b7e8c36
commit 54adabfd39
1 changed files with 8 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import (
"github.com/mitchellh/packer/packer"
"log"
"path/filepath"
"runtime"
"strings"
"time"
)
@ -120,6 +121,13 @@ LockWaitLoop:
}
}
if runtime.GOOS == "windows" {
// Windows takes a while to yield control of the files when the
// process is exiting. We just sleep here. In the future, it'd be
// nice to find a better solution to this.
time.Sleep(5 * time.Second)
}
log.Println("VM shut down.")
return multistep.ActionContinue
}