vagrant/plugins/hosts/windows/host.rb

18 lines
306 B
Ruby
Raw Normal View History

2012-05-23 23:03:14 +00:00
require "vagrant"
2012-01-08 19:14:01 +00:00
require 'vagrant/util/platform'
2012-04-19 05:20:45 +00:00
module VagrantPlugins
module HostWindows
2012-11-07 05:20:22 +00:00
class Host < Vagrant.plugin("2", :host)
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