From ea1a80ef86f04b023b135214011ac0f1cad940f0 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Thu, 28 Jul 2016 17:32:54 -0400 Subject: [PATCH] README: fix examples to specify to use sshfs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b37e12..f21b524 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ An example snippet from a `Vagrantfile`: config.vm.synced_folder "/path/on/host", "/path/on/guest", ssh_opts_append: "-o Compression=yes -o CompressionLevel=5", sshfs_opts_append: "-o auto_cache -o cache_timeout=115200", - disabled: false + disabled: false, type: "sshfs" ``` ### Options Specific to Arbitrary Host Mounting @@ -169,7 +169,7 @@ config.vm.synced_folder "/path/on/host", "/path/on/guest", ssh_host: "somehost.com", ssh_username: "fedora", ssh_opts_append: "-o Compression=yes -o CompressionLevel=5", sshfs_opts_append: "-o auto_cache -o cache_timeout=115200", - disabled: false + disabled: false, type: "sshfs" ``` ### Options Specific to Reverse Mounting (Guest->Host Mount)