vagrant/plugins/providers/hyperv/plugin.rb

22 lines
460 B
Ruby
Raw Normal View History

module VagrantPlugins
module HyperV
class Plugin < Vagrant.plugin("2")
2014-02-15 23:38:11 +00:00
name "Hyper-V provider"
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
end
end
end
end