mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-24 10:20:34 -05:00
15 lines
290 B
Ruby
15 lines
290 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostWindows
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Windows host"
|
|
description "Windows host support."
|
|
|
|
host("windows") do
|
|
require File.expand_path("../host", __FILE__)
|
|
Host
|
|
end
|
|
end
|
|
end
|
|
end
|