Sha256: fb2ca87332fd93c4e0ac6755d1229c7292524652222d311a2ddeab8260d4a238

Contents?: true

Size: 1.64 KB

Versions: 18

Compression:

Stored size: 1.64 KB

Contents

require "log4r"

module VagrantPlugins
  module OVirtProvider
    module Action
      # This action reads the SSH info for the machine and puts it into the
      # `:machine_ssh_info` key in the environment.
      class ReadSSHInfo
        def initialize(app, env)
          @app    = app
          @logger = Log4r::Logger.new("vagrant_ovirt3::action::read_ssh_info")
        end

        def call(env)
          env[:machine_ssh_info] = read_ssh_info(
            env[:ovirt_compute], env[:machine])

          @app.call(env)
        end

        def read_ssh_info(ovirt, machine)
          return nil if machine.id.nil?

          # Get config.
          config = machine.provider_config

          # Find the machine
          server = ovirt.servers.get(machine.id.to_s)

          if server.nil?
            # The machine can't be found
            @logger.info("Machine couldn't be found, assuming it got destroyed.")
            machine.id = nil
            return nil
          end

          ip_address = server.ips.first
          if ip_address == nil or ip_address == ''
            raise Errors::NoIpAddressError
          end

          # Return the info
          # TODO: Some info should be configurable in Vagrantfile
          return {
            :host             => ip_address,
            :port             => machine.config.ssh.guest_port,
            :username         => machine.config.ssh.username,
            :private_key_path => machine.config.ssh.private_key_path,
            :forward_agent    => machine.config.ssh.forward_agent,
            :forward_x11      => machine.config.ssh.forward_x11,
          }
        end 
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
vagrant-ovirt3-1.9.3 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.9.2 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.9.1 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.9.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.8.2 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.7.1 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.7.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.6.2 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.6.1 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.6.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.5.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.3.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.4.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.2.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.1.2 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.1.1 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.1.0 lib/vagrant-ovirt3/action/read_ssh_info.rb
vagrant-ovirt3-1.0.0 lib/vagrant-ovirt3/action/read_ssh_info.rb