17 lines
247 B
Ruby
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
|