Class: VagrantPlugins::OVirtProvider::Action::ReadSSHInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-ovirt4/action/read_ssh_info.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ ReadSSHInfo

Returns a new instance of ReadSSHInfo.



9
10
11
12
# 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

Instance Method Details

#call(env) ⇒ Object



14
15
16
17
18
# 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) ⇒ Object



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
# 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' } } }.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