aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/doc/source/install
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2017-08-15 23:18:12 +0000
committerGerrit Code Review <gerrit@onap.org>2017-08-15 23:18:12 +0000
commita57fb1414b932fa449f51efa5d8314d2f5c4843a (patch)
tree5992a09e0f88bcba5b2450d6bddd68d1d80430e8 /bootstrap/vagrant-onap/doc/source/install
parent5d5c5da9317e4681c10e6fe2a8f76aeb680d3517 (diff)
parentd4036482535db1d1fc28c88960c8b05233543ace (diff)
Merge "Move Known Issues section to docs folder"
Diffstat (limited to 'bootstrap/vagrant-onap/doc/source/install')
-rw-r--r--bootstrap/vagrant-onap/doc/source/install/known_issues.rst50
1 files changed, 50 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/doc/source/install/known_issues.rst b/bootstrap/vagrant-onap/doc/source/install/known_issues.rst
new file mode 100644
index 000000000..84d50940b
--- /dev/null
+++ b/bootstrap/vagrant-onap/doc/source/install/known_issues.rst
@@ -0,0 +1,50 @@
+============
+Known Issues
+============
+
+Virtualbox guest additions conflict with shared directories
+-----------------------------------------------------------
+
+If the **vagrant-vbguest** plugin is installed on the host, then an
+updated version of the Virtualbox guest additions will be installed
+on the guest in the /opt directory. Once this projects Vagrantfile
+mounts the ./opt directory on the host to the /opt directory on the
+guest during the provisioning process, the guest addtions on the
+guest are hidden and subsequent mounts of shared directories with the
+host will fail.
+
+The simplest workaround appears to be uninstalling the
+*vagrant-vbguest* plugin on the host system. This has been observed
+to work on a Windows 10 host using virtualbox 5.1.26.
+
+Check if vagrant-vbguest plugin is installed
+
+- Linux or Mac
+
+.. code-block:: console
+
+ $ vagrant plugin list
+.. end
+
+- Windows
+
+.. code-block:: console
+
+ C:\> vagrant plugin list
+.. end
+
+Remove vagrant-vbguest plugin
+
+- Linux or Mac
+
+.. code-block:: console
+
+ $ vagrant plugin uninstall vagrant-vbguest
+.. end
+
+- Windows
+
+.. code-block:: console
+
+ C:\> vagrant plugin uninstall vagrant-vbguest
+.. end