class VagrantPlugins::OVirtProvider::Action::ReadSSHInfo

This action reads the SSH info for the machine and puts it into the ‘:machine_ssh_info` key in the environment.

Public Class Methods

new(app, env) click to toggle source
# File lib/vagrant-ovirt4/action/read_ssh_info.rb, line 9
def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("vagrant_ovirt4::action::read_ssh_info")
end

Public Instance Methods

call(env) click to toggle source
# File lib/vagrant-ovirt4/action/read_ssh_info.rb, line 14
def call(env)
  env[:machine_ssh_info] = read_ssh_info(env)

  @app.call(env)
end
read_ssh_info(env) click to toggle source
# File lib/vagrant-ovirt4/action/read_ssh_info.rb, line 20
def read_ssh_info(env)
  vms_service, machine = env[:vms_service], env[:machine]
  return :not_created if machine.id.nil?

  # Find the machine
  server = vms_service.vm_service(machine.id)
  begin
    if server.get.nil?
      machine.id = nil
      return :not_created
    end
  rescue Exception => e
    machine.id = nil
    return :not_created
    raise e
  end

  nics_service = server.nics_service
  nics = nics_service.list
  ip_addr = nics.collect { |nic_attachment| env[:connection].follow_link(nic_attachment).reported_devices.collect { |dev| dev.ips.collect { |ip| ip.address if ip.version == 'v4' } unless dev.ips.nil? } }.flatten.reject { |ip| ip.nil? }.first rescue nil

  # Return the info
  # TODO: Some info should be configurable in Vagrantfile
  return {
    :host             => ip_addr,
    :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