21 lines
387 B
Ruby
21 lines
387 B
Ruby
|
require "vagrant"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module HostDarwin
|
||
|
class Plugin < Vagrant.plugin("2")
|
||
|
name "Mac OS X host"
|
||
|
description "Mac OS X host support."
|
||
|
|
||
|
host("darwin", "bsd") do
|
||
|
require_relative "host"
|
||
|
Host
|
||
|
end
|
||
|
|
||
|
host_capability("darwin", "rdp_client") do
|
||
|
require_relative "cap/rdp"
|
||
|
Cap::RDP
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|