Sha256: 92366265eeb018f014eb750ab7f3abd76002f8e1d215727bee548e4063c4da2e

Contents?: true

Size: 1023 Bytes

Versions: 4

Compression:

Stored size: 1023 Bytes

Contents

require 'log4r'
require 'timeout'

require 'vagrant-openstack-provider/action/abstract_action'

module VagrantPlugins
  module Openstack
    module Action
      class WaitForServerToBeActive < AbstractAction
        def initialize(app, _env, retry_interval = 3)
          @app    = app
          @logger = Log4r::Logger.new('vagrant_openstack::action::start_server')
          @retry_interval = retry_interval
        end

        def execute(env)
          if env[:machine].id
            env[:ui].info(I18n.t('vagrant_openstack.waiting_start'))
            client = env[:openstack_client].nova
            config = env[:machine].provider_config
            timeout(config.server_active_timeout, Errors::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
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-openstack-provider-0.7.2 lib/vagrant-openstack-provider/action/wait_active.rb
vagrant-openstack-provider-0.7.1 lib/vagrant-openstack-provider/action/wait_active.rb
vagrant-openstack-provider-0.7.0 lib/vagrant-openstack-provider/action/wait_active.rb
vagrant-openstack-provider-0.6.1 lib/vagrant-openstack-provider/action/wait_active.rb