vaguerent/lib/vagrant/hosts/windows.rb
Mitchell Hashimoto ba5cd9b88a Windows host
2012-01-08 11:14:01 -08:00

17 lines
247 B
Ruby

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