2014-02-15 23:29:16 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module HyperV
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
2014-02-15 23:38:11 +00:00
|
|
|
name "Hyper-V provider"
|
2014-02-15 23:29:16 +00:00
|
|
|
description <<-DESC
|
|
|
|
This plugin installs a provider that allows Vagrant to manage
|
|
|
|
machines in Hyper-V.
|
|
|
|
DESC
|
|
|
|
|
|
|
|
provider(:hyperv, parallel: true) do
|
|
|
|
require_relative "provider"
|
|
|
|
Provider
|
|
|
|
end
|
|
|
|
|
2014-02-15 23:38:11 +00:00
|
|
|
config(:hyperv, :provider) do
|
|
|
|
require_relative "config"
|
|
|
|
Config
|
2014-02-15 23:29:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|