vagrant/plugins/providers/virtualbox/action/check_box.rb

37 lines
1.2 KiB
Ruby
Raw Normal View History

2012-08-15 05:38:41 +00:00
module VagrantPlugins
module ProviderVirtualBox
module Action
class CheckBox
def initialize(app, env)
@app = app
end
def call(env)
box_name = env[:machine].config.vm.box
raise Vagrant::Errors::BoxNotSpecified if !box_name
if !env[:box_collection].find(box_name, :virtualbox)
box_url = env[:machine].config.vm.box_url
raise Vagrant::Errors::BoxSpecifiedDoesntExist, :name => box_name if !box_url
# Add the box then reload the box collection so that it becomes
# aware of it.
env[:ui].info I18n.t("vagrant.actions.vm.check_box.not_found", :name => box_name)
env[:action_runner].run(Vagrant::Action.action_box_add, {
:box_name => box_name,
:box_provider => env[:machine].provider_name,
:box_url => box_url
})
2012-08-15 05:38:41 +00:00
# Reload the environment and set the VM to be the new loaded VM.
env[:machine] = env[:machine].env.machine(
2013-01-30 18:37:40 +00:00
env[:machine].name, env[:machine].provider_name, true)
2012-08-15 05:38:41 +00:00
end
@app.call(env)
end
end
end
end
end