Get rid of the one second sleep on `reload`. A fix was pushed upstream in virtualbox gem which fixes this.

This commit is contained in:
Mitchell Hashimoto 2010-04-26 23:41:42 -07:00
parent fee901a899
commit fab4ae5dd2
2 changed files with 1 additions and 8 deletions

View File

@ -11,13 +11,6 @@ module Vagrant
@runner.add_action(action_klass)
end
end
def after_halt
# This sleep is here to allow the VM to clean itself up. There appears
# nothing [obvious] in the VirtualBox API to automate this. For now, this
# is an interim solution.
sleep 1
end
end
end
end

View File

@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Mitchell Hashimoto", "John Bender"]
s.date = %q{2010-04-25}
s.date = %q{2010-04-26}
s.default_executable = %q{vagrant}
s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.}
s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]