Merge pull request #1272 from StefanScherer/fix_1267_increase_vmware_cleanup_timeout

increase VMware cleanup timeout to 120 seconds
This commit is contained in:
Ross Smith II 2014-06-19 16:42:45 -07:00
commit 9668276e4b
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ func (s *StepShutdown) Run(state multistep.StateBag) multistep.StepAction {
ui.Message("Waiting for VMware to clean up after itself...")
lockRegex := regexp.MustCompile(`(?i)\.lck$`)
timer := time.After(15 * time.Second)
timer := time.After(120 * time.Second)
LockWaitLoop:
for {
files, err := dir.ListFiles()