Must use version 2 of the berkshelf plugin not version 3.

Also I specified a bit more on pre-reqs particularily needed for the gem
install of berkshelf.

Change-Id: Ib9209e66c2ec911551d5220bab29cd9f6c701d8d
This commit is contained in:
Tim Kuhlman 2014-08-26 16:01:24 -06:00
parent 6a590a66af
commit e57831b2d2
1 changed files with 3 additions and 2 deletions

View File

@ -54,6 +54,7 @@ brew cask install vagrant
#### Linux (Ubuntu)
```
# You need the ruby (>1.9) and ruby-dev packages installed for these commands to complete
# For Ubuntu 12.04, you may need to install ruby 1.9 first
sudo apt-get install ruby1.9.3
sudo update-alternatives --set ruby /usr/bin/ruby1.9.1
@ -66,12 +67,12 @@ wget $latest && sudo dpkg -i `basename $latest`
### Set Up Berkshelf
#### MacOS
```
vagrant plugin install vagrant-berkshelf --plugin-version '>= 2.0.1'
vagrant plugin install vagrant-berkshelf --plugin-version '= 2.0.1'
gem install berkshelf
```
#### Linux (Ubuntu)
```
sudo vagrant plugin install vagrant-berkshelf --plugin-version '>= 2.0.1'
sudo vagrant plugin install vagrant-berkshelf --plugin-version '= 2.0.1'
sudo gem install berkshelf
```