From f3827b095a26be7945722187ead2d857edbf0615 Mon Sep 17 00:00:00 2001 From: ymdatta Date: Jul 09 2018 11:40:12 +0000 Subject: Update README.rst to include instructions for vagrant-sshfs error. This error 'Block in synced folders: internal error invalid:sshfs' is due to missing vagrant-sshfs plugin. Added instructions in README.rst when faced in this issue. Fixes https://pagure.io/pagure/issue/3278 Signed-off by: Mohana Datta Yelugoti --- diff --git a/README.rst b/README.rst index 23112c0..acdf130 100644 --- a/README.rst +++ b/README.rst @@ -43,6 +43,15 @@ just copy it and install Vagrant:: $ sudo dnf install ansible libvirt vagrant-libvirt vagrant-sshfs vagrant-hostmanager $ vagrant up +If you get this error ``Block in synced_folders: Internal error. Invalid: sshfs``, +when you run ``vagrant up`` , you need to install vagrant sshfs plugin, which can be done by:: + + $ vagrant plugin install vagrant--sshfs + +and then:: + + $ vagrant up + The default ``Vagrantfile`` forwards ports from the host to the guest, so you can interact with the application as if it were running on your host machine.