vagrant/plugins/hosts/windows/host.rb

17 lines
282 B
Ruby
Raw Normal View History

2012-01-08 19:14:01 +00:00
require 'vagrant/util/platform'
2012-04-19 05:20:45 +00:00
module VagrantPlugins
module HostWindows
class Host < Vagrant::Hosts::Base
2012-01-08 19:14:01 +00:00
def self.match?
2012-04-19 05:20:45 +00:00
Vagrant::Util::Platform.windows?
2012-01-08 19:14:01 +00:00
end
# Windows does not support NFS
def nfs?
false
end
end
end
end