From dd541b93b909f95f39b59c4d18957e73faf2b74b Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 4 Feb 2016 17:22:28 +0100 Subject: [PATCH] ooops missed something while branching --- plugins/guests/tinycore/cap/mount_nfs.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/guests/tinycore/cap/mount_nfs.rb b/plugins/guests/tinycore/cap/mount_nfs.rb index 5c2cde27e..ccfc1666b 100644 --- a/plugins/guests/tinycore/cap/mount_nfs.rb +++ b/plugins/guests/tinycore/cap/mount_nfs.rb @@ -26,7 +26,7 @@ module VagrantPlugins mount_opts = opts[:mount_options].dup end - mount_command = "mount -o '#{mount_opts.join(",")}' #{ip}:'#{hostpath}' #{expanded_guest_path}" + mount_command = "mount.nfs -o '#{mount_opts.join(",")}' #{ip}:'#{hostpath}' #{expanded_guest_path}" retryable(on: Vagrant::Errors::LinuxNFSMountFailed, tries: 8, sleep: 3) do machine.communicate.sudo(mount_command, error_class: Vagrant::Errors::LinuxNFSMountFailed)