mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-20 16:31:24 -05:00
12 lines
239 B
Ruby
12 lines
239 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostBSD
|
|
# Represents a BSD host, such as FreeBSD.
|
|
class Host < Vagrant.plugin("2", :host)
|
|
def detect?(env)
|
|
Vagrant::Util::Platform.darwin?
|
|
end
|
|
end
|
|
end
|
|
end
|