Sha256: 79899bc36162890fd3354f7cee6b1ddf1cca6b2d97fa6e2e72ea79159ddd4c6f

Contents?: true

Size: 1.05 KB

Versions: 10

Compression:

Stored size: 1.05 KB

Contents

require 'log4r'

module VagrantPlugins
  module Openstack
    module Action
      # This action reads the state of the machine and puts it in the
      # `:machine_state_id` key in the environment.
      class ReadState
        def initialize(app, _env)
          @app    = app
          @logger = Log4r::Logger.new('vagrant_openstack::action::read_state')
        end

        def call(env)
          env[:machine_state_id] = read_state(env)
          @app.call(env)
        end

        def read_state(env)
          machine = env[:machine]
          return :not_created if machine.id.nil?

          # Find the machine
          server = env[:openstack_client].nova.get_server_details(env, machine.id)
          if server.nil? || server['status'] == 'DELETED'
            # The machine can't be found
            @logger.info('Machine not found or deleted, assuming it got destroyed.')
            machine.id = nil
            return :not_created
          end

          # Return the state
          server['status'].downcase.to_sym
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
vagrant-openstack-provider-0.5.2 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.5.1 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.5.0 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.4.1 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.4.0 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.3.4.pre lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.3.3 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.3.2 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.3.0 lib/vagrant-openstack-provider/action/read_state.rb
vagrant-openstack-provider-0.2.0 lib/vagrant-openstack-provider/action/read_state.rb