diff --git a/lib/vagrant-libvirt/action/prepare_nfs_settings.rb b/lib/vagrant-libvirt/action/prepare_nfs_settings.rb index 6390891..b07543e 100644 --- a/lib/vagrant-libvirt/action/prepare_nfs_settings.rb +++ b/lib/vagrant-libvirt/action/prepare_nfs_settings.rb @@ -79,7 +79,7 @@ module VagrantPlugins # Check if we can open a connection to the host def ping(host, timeout = 3) ::Timeout.timeout(timeout) do - s = TCPSocket.new(host, 'echo') + s = TCPSocket.new(host, 'ssh') s.close end true