Class: VagrantPlugins::OpenStack::Action::IsPaused

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-openstack-plugin/action/is_paused.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ IsPaused

Returns a new instance of IsPaused.



5
6
7
# File 'lib/vagrant-openstack-plugin/action/is_paused.rb', line 5

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

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
# File 'lib/vagrant-openstack-plugin/action/is_paused.rb', line 9

def call(env)
  env[:result] = env[:machine].state.id == :paused
  @app.call(env)
end