2013-03-02 20:36:06 -03:00
|
|
|
require "vagrant-lxc/version"
|
2013-02-28 00:20:54 -03:00
|
|
|
require "vagrant-lxc/plugin"
|
2014-03-14 00:24:06 -03:00
|
|
|
|
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
def self.source_root
|
|
|
|
@source_root ||= Pathname.new(File.dirname(__FILE__)).join('..').expand_path
|
|
|
|
end
|
2014-04-08 19:58:07 +02:00
|
|
|
|
|
|
|
def self.sudo_wrapper_path
|
|
|
|
"/usr/local/bin/vagrant-lxc-wrapper-#{VERSION}"
|
|
|
|
end
|
2014-03-14 00:24:06 -03:00
|
|
|
end
|
|
|
|
end
|