Class: VagrantPlugins::ProviderKvm::Action::IsSaved

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-kvm/action/is_saved.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ IsSaved

Returns a new instance of IsSaved.



5
6
7
# File 'lib/vagrant-kvm/action/is_saved.rb', line 5

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
14
15
16
# File 'lib/vagrant-kvm/action/is_saved.rb', line 9

def call(env)
  # Set the result to be true if the machine is saved.
  env[:result] = env[:machine].state.id == :saved

  # Call the next if we have one (but we shouldn't, since this
  # middleware is built to run with the Call-type middlewares)
  @app.call(env)
end