vagrant/plugins/hosts/freebsd/host.rb

13 lines
230 B
Ruby
Raw Normal View History

2012-05-23 23:03:14 +00:00
require "vagrant"
2011-09-26 17:39:58 +00:00
require 'vagrant/util/platform'
2012-04-19 05:20:45 +00:00
module VagrantPlugins
module HostFreeBSD
2014-01-08 05:01:03 +00:00
class Host < Vagrant.plugin("2", :host)
2014-01-08 05:18:36 +00:00
def detect?(env)
2012-04-19 05:20:45 +00:00
Vagrant::Util::Platform.freebsd?
2011-09-26 17:39:58 +00:00
end
2011-12-12 07:22:44 +00:00
end
2011-09-26 17:39:58 +00:00
end
end