From 61e74c92736eed88dbf5e5677445d1e91e596982 Mon Sep 17 00:00:00 2001 From: "Swapnil Kulkarni (coolsvap)" Date: Wed, 10 Aug 2016 09:36:18 +0530 Subject: [PATCH] Vagrant doc updates Updated vagrant doc to include - package installs for CentOS - add git and gcc required during install Change-Id: Ic52350fb16f69cde87bd1a8177d4a76ef7fd4f5e --- doc/vagrant-dev-env.rst | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/vagrant-dev-env.rst b/doc/vagrant-dev-env.rst index 529453bcbd..377f398199 100644 --- a/doc/vagrant-dev-env.rst +++ b/doc/vagrant-dev-env.rst @@ -39,13 +39,19 @@ Start by downloading and installing the Vagrant package for the distro of choice. Various downloads can be found at the `Vagrant downloads `__. -On Fedora 22 it is as easy as:: +Install required dependencies as follows: - sudo dnf install vagrant ruby-devel libvirt-devel libvirt-python +On CentOS 7:: -On Ubuntu 14.04 it is as easy as:: + sudo yum install vagrant ruby-devel libvirt-devel libvirt-python gcc git - sudo apt-get install vagrant ruby-dev ruby-libvirt python-libvirt libvirt-dev nfs-kernel-server +On Fedora 22 or later:: + + sudo dnf install vagrant ruby-devel libvirt-devel libvirt-python gcc git + +On Ubuntu 14.04 or later:: + + sudo apt-get install vagrant ruby-dev ruby-libvirt python-libvirt libvirt-dev nfs-kernel-server gcc git .. note:: Many distros ship outdated versions of Vagrant by default. When in doubt, always install the latest from the downloads page above.