Class: VagrantPlugins::ProviderZone::Action::Setup

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-zone/action/setup.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ Setup

Returns a new instance of Setup.



9
10
11
12
# File 'lib/vagrant-zone/action/setup.rb', line 9

def initialize(app, env)
	@logger = Log4r::Logger.new("vagrant_zone::action::import")
	@app = app
end

Instance Method Details

#call(env) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/vagrant-zone/action/setup.rb', line 14

def call(env)
	@machine = env[:machine]
	@driver  = @machine.provider.driver
	sleep 2
	@driver.setup(@machine, env[:ui])
	@app.call(env)
end