Class: VagrantPlugins::Openstack::Action::WaitForServerToBeActive

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

Instance Method Summary collapse

Constructor Details

#initialize(app, _env, retry_interval = 3, timeout = 200) ⇒ WaitForServerToBeActive

Returns a new instance of WaitForServerToBeActive.



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

def initialize(app, _env, retry_interval = 3, timeout = 200)
  @app    = app
  @logger = Log4r::Logger.new('vagrant_openstack::action::start_server')
  @retry_interval = retry_interval
  @timeout = timeout
end

Instance Method Details

#call(env) ⇒ Object



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

def call(env)
  if env[:machine].id
    env[:ui].info(I18n.t('vagrant_openstack.waiting_start'))
    client = env[:openstack_client].nova
    timeout(@timeout) do
      while client.get_server_details(env, env[:machine].id)['status'] != 'ACTIVE'
        sleep @retry_interval
        @logger.info('Waiting for server to be active')
      end
    end
  end
  @app.call(env)
end