Class: VagrantPlugins::Skytap::Action::RunVm

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Util::Retryable
Defined in:
lib/vagrant-skytap/action/run_vm.rb

Overview

Runs the Skytap VM.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ RunVm

Returns a new instance of RunVm.



12
13
14
15
16
# File 'lib/vagrant-skytap/action/run_vm.rb', line 12

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

Instance Attribute Details

#envObject (readonly)

Returns the value of attribute env.



10
11
12
# File 'lib/vagrant-skytap/action/run_vm.rb', line 10

def env
  @env
end

Instance Method Details

#call(env) ⇒ Object



18
19
20
21
22
23
# File 'lib/vagrant-skytap/action/run_vm.rb', line 18

def call(env)
  env[:ui].info(I18n.t("vagrant_skytap.launching_vm"))
  environment.current_vm.run!

  @app.call(env)
end

#environmentObject



25
26
27
# File 'lib/vagrant-skytap/action/run_vm.rb', line 25

def environment
  env[:environment]
end