module VagrantPlugins::OVirtProvider

Constants

VERSION

Public Class Methods

ovirt_connection() click to toggle source
# File lib/vagrant-ovirt4.rb, line 13
def self.ovirt_connection
  @@ovirt_connection
end
ovirt_connection=(conn) click to toggle source
# File lib/vagrant-ovirt4.rb, line 17
def self.ovirt_connection=(conn)
  @@ovirt_connection = conn
end
source_root() click to toggle source

This returns the path to the source of this plugin.

@return [Pathname]

# File lib/vagrant-ovirt4.rb, line 34
def self.source_root
  @source_root ||= Pathname.new(File.expand_path("../../", __FILE__))
end
vms_service() click to toggle source
# File lib/vagrant-ovirt4.rb, line 21
def self.vms_service
  @@vms_service
end
vms_service=(conn) click to toggle source
# File lib/vagrant-ovirt4.rb, line 25
def self.vms_service=(conn)
  @@vms_service = conn
end