Files
vagrant-libvirt/lib/vagrant-libvirt.rb
Dmitry Vasilets 0c1c94bf36 Merge pull request #436 from electrofelix/parallel-ssh_info
allow query of ssh_info in parallel from other machines or user
2015-08-05 21:48:13 +02:00

18 lines
491 B
Ruby

require 'pathname'
module VagrantPlugins
module ProviderLibvirt
lib_path = Pathname.new(File.expand_path('../vagrant-libvirt', __FILE__))
autoload :Action, lib_path.join('action')
autoload :Errors, lib_path.join('errors')
autoload :Util, lib_path.join('util')
def self.source_root
@source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
end
end
end
# make sure base module class defined before loading plugin
require 'vagrant-libvirt/plugin'