vagrant/plugins/hosts/bsd/host.rb

15 lines
308 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
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