vagrant-lxc-ng/lib/vagrant-lxc/plugin.rb
2013-02-28 00:20:54 -03:00

24 lines
503 B
Ruby

require "vagrant"
module Vagrant
module LXC
class Plugin < Vagrant.plugin("2")
name "Linux Containers (LXC) provider"
description <<-EOF
The LXC provider allows Vagrant to manage and control
LXC-based virtual machines.
EOF
provider(:lxc) do
require File.expand_path("../provider", __FILE__)
Provider
end
config(:lxc, :provider) do
require File.expand_path("../config", __FILE__)
Config
end
end
end
end