2014-01-07 20:39:24 -08:00

13 lines
293 B
Ruby

require "vagrant"
module VagrantPlugins
module HostBSD
# Represents a BSD host, such as FreeBSD and Darwin (Mac OS X).
class Host < Vagrant.plugin("2", :host)
def detect?(env)
Vagrant::Util::Platform.darwin? || Vagrant::Util::Platform.bsd?
end
end
end
end