Sha256: 39e5d8f2a367d2824da7ac0804527a9be0b763feaae5665cd9631816a791ad68

Contents?: true

Size: 1.48 KB

Versions: 14

Compression:

Stored size: 1.48 KB

Contents

require "log4r"
require "vagrant"

module VagrantPlugins
  module AWS
    class Provider < Vagrant.plugin("2", :provider)
      def initialize(machine)
        @machine = machine
      end

      def action(name)
        # Attempt to get the action method from the Action class if it
        # exists, otherwise return nil to show that we don't support the
        # given action.
        action_method = "action_#{name}"
        return Action.send(action_method) if Action.respond_to?(action_method)
        nil
      end

      def ssh_info
        # Run a custom action called "read_ssh_info" which does what it
        # says and puts the resulting SSH info into the `:machine_ssh_info`
        # key in the environment.
        env = @machine.action("read_ssh_info", lock: false)
        env[:machine_ssh_info]
      end

      def state
        # Run a custom action we define called "read_state" which does
        # what it says. It puts the state in the `:machine_state_id`
        # key in the environment.
        env = @machine.action("read_state", lock: false)

        state_id = env[:machine_state_id]

        # Get the short and long description
        short = I18n.t("vagrant_aws.states.short_#{state_id}")
        long  = I18n.t("vagrant_aws.states.long_#{state_id}")

        # Return the MachineState object
        Vagrant::MachineState.new(state_id, short, long)
      end

      def to_s
        id = @machine.id.nil? ? "new" : @machine.id
        "AWS (#{id})"
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 6 rubygems

Version Path
vagrant-aws-mscottford-0.8.2 lib/vagrant-aws/provider.rb
vagrant-aws-mscottford-0.8.1 lib/vagrant-aws/provider.rb
vagrant-aws-mscottford-0.8.0 lib/vagrant-aws/provider.rb
vagrant-gecko-aws-0.8.0 lib/vagrant-aws/provider.rb
vagrant-aws-detiber-0.7.2.pre.4 lib/vagrant-aws/provider.rb
vagrant-aws-detiber-0.7.2.pre.3 lib/vagrant-aws/provider.rb
vagrant-aws-detiber-0.7.2.pre.2 lib/vagrant-aws/provider.rb
vagrant-aws-iam-decoder-0.7.2 lib/vagrant-aws/provider.rb
vagrant-aws-mkubenka-0.7.2.pre.14 lib/vagrant-aws/provider.rb
vagrant-aws-mkubenka-0.7.2.pre.11 lib/vagrant-aws/provider.rb
vagrant-aws-mkubenka-0.7.2.pre.10 lib/vagrant-aws/provider.rb
vagrant-aws-mkubenka-0.7.2.pre.9 lib/vagrant-aws/provider.rb
vagrant-aws-mkubenka-0.7.2.pre.8 lib/vagrant-aws/provider.rb
vagrant-aws-0.7.2 lib/vagrant-aws/provider.rb