Mitchell Hashimoto 5a33b7ee54 Hosts to V2
2012-11-06 21:20:22 -08:00

18 lines
306 B
Ruby

require "vagrant"
require 'vagrant/util/platform'
module VagrantPlugins
module HostWindows
class Host < Vagrant.plugin("2", :host)
def self.match?
Vagrant::Util::Platform.windows?
end
# Windows does not support NFS
def nfs?
false
end
end
end
end