24 lines
503 B
Ruby
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
|