Go to file
Seth Vargo ff95fc5c1e Only append access_token the first time
This fixes GH-6395 by only appending the access_token once. It also fixes a
bug that was never reported. If a user supplied an access_token for a box URL,
Vagrant would silently overwrite it.

After this commit, Vagrant only appends an access_token to the URL if no
value exists at the key.
2015-11-18 10:44:35 -08:00
bin for newer versions of Bundler, store the runtime 2015-07-09 22:12:47 -06:00
contrib Update bash-completion 2015-08-07 02:07:30 +03:00
keys Fix doc link [GH-3978] 2014-06-05 09:18:36 +03:00
lib Merge 'gildegoma/2103-ansible-local-v2' 2015-11-10 23:05:29 +01:00
plugins Only append access_token the first time 2015-11-18 10:44:35 -08:00
scripts Fix SHASUM file name 2015-10-22 12:18:43 -04:00
tasks Use color 2015-07-09 17:24:29 -06:00
templates Merge pull request #4400 from mwrock/ps-cmd 2015-11-18 10:41:36 -08:00
test Only append access_token the first time 2015-11-18 10:44:35 -08:00
website website: fix debian logo 2015-11-17 10:51:04 -08:00
.gitignore Ignore vendor/ 2015-03-30 10:19:02 -04:00
.travis.yml Use bundle exec 2015-07-09 17:20:02 -06:00
.vimrc .vimrc with vagrant tabstop settings 2013-10-22 08:24:58 +02:00
.yardopts YARD and some documentation 2010-09-22 09:43:30 -06:00
CHANGELOG.md Merge 'gildegoma/2103-ansible-local-v2' 2015-11-10 23:05:29 +01:00
CONTRIBUTING.md Fix typos in CONTRIBUTING.md 2014-11-06 14:43:11 +01:00
Gemfile change Gemfile source to HTTPS 2014-10-23 15:25:40 -04:00
LICENSE Update year in license 2015-01-06 14:10:13 -08:00
README.md Update README URLs based on HTTP redirects 2015-11-16 09:15:58 -08:00
Rakefile Change symbols inside hashes to 1.9 JSON-like syntax 2014-05-22 12:35:12 -04:00
Vagrantfile Fix Vagrantfile 2015-07-08 10:12:31 -06:00
vagrant-spec.config.example.rb core: Within a Bundler env, don't manage Bundler 2014-01-17 09:39:20 -08:00
vagrant.gemspec support Bundler 1.10.6 2015-10-06 14:24:43 -04:00
version.txt up version for dev 2015-10-08 11:14:32 -04:00

README.md

Vagrant

Vagrant is a tool for building and distributing development environments.

Development environments managed by Vagrant can run on local virtualized platforms such as VirtualBox or VMware, in the cloud via AWS or OpenStack, or in containers such as with Docker or raw LXC.

Vagrant provides the framework and configuration format to create and manage complete portable development environments. These development environments can live on your computer or in the cloud, and are portable between Windows, Mac OS X, and Linux.

Quick Start

For the quick-start, we'll bring up a development machine on VirtualBox because it is free and works on all major platforms. Vagrant can, however, work with almost any system such as OpenStack, VMware, Docker, etc.

First, make sure your development machine has VirtualBox installed. After this, download and install the appropriate Vagrant package for your OS.

To build your first virtual environment:

vagrant init hashicorp/precise32
vagrant up

Note: The above vagrant up command will also trigger Vagrant to download the precise32 box via the specified URL. Vagrant only does this if it detects that the box doesn't already exist on your system.

Getting Started Guide

To learn how to build a fully functional development environment, follow the getting started guide.

Installing the Gem from Git

If you want the bleeding edge version of Vagrant, we try to keep master pretty stable and you're welcome to give it a shot. The following is an example showing how to do this:

rake install

Ruby 2.0 is needed.

Contributing to Vagrant

Dependencies and Unit Tests

To hack on Vagrant, you'll need bundler which can be installed with a simple gem install bundler. Afterwards, do the following:

bundle install
rake

This will run the unit test suite, which should come back all green! Then you're good to go!

If you want to run Vagrant without having to install the gem, you may use bundle exec, like so:

bundle exec vagrant help

NOTE: By default running Vagrant via bundle will disable plugins. This is necessary because Vagrant creates its own private Bundler context (it does not respect your Gemfile), because it uses Bundler to manage plugin dependencies.

Acceptance Tests

Vagrant also comes with an acceptance test suite that does black-box tests of various Vagrant components. Note that these tests are extremely slow because actual VMs are spun up and down. The full test suite can take hours. Instead, try to run focused component tests.

To run the acceptance test suite, first copy vagrant-spec.config.example.rb to vagrant-spec.config.rb and modify it to valid values. The places you should fill in are clearly marked.

Next, see the components that can be tested:

$ rake acceptance:components
cli
provider/virtualbox/basic
...

Then, run one of those components:

$ rake acceptance:run COMPONENTS="cli"
...