Class: VagrantPlugins::Openstack::Action::WaitForServerToStop

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

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ WaitForServerToStop

Returns a new instance of WaitForServerToStop.



8
9
10
11
# File 'lib/vagrant-openstack-provider/action/wait_stop.rb', line 8

def initialize(app, _env)
  @app    = app
  @logger = Log4r::Logger.new('vagrant_openstack::action::stop_server')
end

Instance Method Details

#call(env) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/vagrant-openstack-provider/action/wait_stop.rb', line 13

def call(env)
  if env[:machine].id
    env[:ui].info(I18n.t('vagrant_openstack.waiting_stop'))
    client = env[:openstack_client].nova
    timeout(200) do
      while client.get_server_details(env, env[:machine].id)['status'] != 'SHUTOFF'
        sleep 3
        @logger.info('Waiting for server to stop')
      end
    end
  end
  @app.call(env)
end