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:
parent
fee901a899
commit
fab4ae5dd2
|
@ -11,13 +11,6 @@ module Vagrant
|
||||||
@runner.add_action(action_klass)
|
@runner.add_action(action_klass)
|
||||||
end
|
end
|
||||||
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
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -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.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Mitchell Hashimoto", "John Bender"]
|
s.authors = ["Mitchell Hashimoto", "John Bender"]
|
||||||
s.date = %q{2010-04-25}
|
s.date = %q{2010-04-26}
|
||||||
s.default_executable = %q{vagrant}
|
s.default_executable = %q{vagrant}
|
||||||
s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.}
|
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"]
|
s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
|
||||||
|
|
Loading…
Reference in New Issue