vagrant-lxc-ng/lib/vagrant-lxc/plugin.rb

36 lines
841 B
Ruby
Raw Normal View History

require 'vagrant'
require 'vagrant-backports/utils'
module Vagrant
module LXC
class Plugin < Vagrant.plugin("2")
name "vagrant-lxc"
description <<-EOF
The LXC provider allows Vagrant to manage and control
LXC-based virtual machines.
EOF
2013-11-06 23:38:59 +00:00
provider(:lxc, parallel: true) do
require File.expand_path("../provider", __FILE__)
2013-04-05 05:08:07 +00:00
I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../../locales/en.yml')
I18n.reload!
Provider
end
config(:lxc, :provider) do
require File.expand_path("../config", __FILE__)
Config
end
if Vagrant::Backports.vagrant_1_4_or_later?
synced_folder(:lxc) do
require File.expand_path("../synced_folder", __FILE__)
SyncedFolder
end
end
end
end
end