Class: VagrantPlugins::AWS::Action::StartInstance

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Util::Retryable
Defined in:
lib/vagrant-aws/action/start_instance.rb

Overview

This starts a stopped instance.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ StartInstance

Returns a new instance of StartInstance.



14
15
16
17
# File 'lib/vagrant-aws/action/start_instance.rb', line 14

def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("vagrant_aws::action::start_instance")
end

Instance Method Details

#call(env) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/vagrant-aws/action/start_instance.rb', line 19

def call(env)
  # Initialize metrics if they haven't been
  env[:metrics] ||= {}

  server = env[:aws_compute].servers.get(env[:machine].id)

  env[:ui].info(I18n.t("vagrant_aws.starting"))

  begin
    server.start

    region = env[:machine].provider_config.region
    region_config = env[:machine].provider_config.get_region_config(region)

    # Wait for the instance to be ready first
    env[:metrics]["instance_ready_time"] = Util::Timer.time do
        tries = region_config.instance_ready_timeout / 2

      env[:ui].info(I18n.t("vagrant_aws.waiting_for_ready"))
      begin
        retryable(:on => Fog::Errors::TimeoutError, :tries => tries) do
          # If we're interrupted don't worry about waiting
          next if env[:interrupted]

          # Wait for the server to be ready
          server.wait_for(2) { ready? }
        end
      rescue Fog::Errors::TimeoutError
        # Notify the user
        raise Errors::InstanceReadyTimeout,
          timeout: region_config.instance_ready_timeout
      end
    end
  rescue Fog::Compute::AWS::Error => e
    raise Errors::FogError, :message => e.message
  end

  @logger.info("Time to instance ready: #{env[:metrics]["instance_ready_time"]}")

  if !env[:interrupted]
    env[:metrics]["instance_ssh_time"] = Util::Timer.time do
      # Wait for SSH to be ready.
      env[:ui].info(I18n.t("vagrant_aws.waiting_for_ssh"))
      while true
        # If we're interrupted then just back out
        break if env[:interrupted]
        break if env[:machine].communicate.ready?
        sleep 2
      end
    end

    @logger.info("Time for SSH ready: #{env[:metrics]["instance_ssh_time"]}")

    # Ready and booted!
    env[:ui].info(I18n.t("vagrant_aws.ready"))
  end

  @app.call(env)
end