2012-04-20 16:53:01 -07:00

17 lines
282 B
Ruby

require 'vagrant/util/platform'
module VagrantPlugins
module HostWindows
class Host < Vagrant::Hosts::Base
def self.match?
Vagrant::Util::Platform.windows?
end
# Windows does not support NFS
def nfs?
false
end
end
end
end