2012-05-23 23:03:14 +00:00
|
|
|
require "vagrant"
|
2011-08-28 06:39:02 +00:00
|
|
|
|
2012-04-19 05:20:45 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module HostBSD
|
2014-04-21 03:39:42 +00:00
|
|
|
# Represents a BSD host, such as FreeBSD.
|
2012-11-07 05:20:22 +00:00
|
|
|
class Host < Vagrant.plugin("2", :host)
|
2014-01-08 04:39:24 +00:00
|
|
|
def detect?(env)
|
2014-04-21 03:39:42 +00:00
|
|
|
Vagrant::Util::Platform.darwin?
|
2011-12-12 07:22:44 +00:00
|
|
|
end
|
2010-07-11 05:07:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|