vagrant

https://github.com/mitchellh/vagrant

Ruby

Vagrant is a tool for building and distributing development environments.

Vagrant::Plugin::V2::Provisioner#configure

Called with the root configuration of the machine so the provisioner
can add some configuration on top of the machine.

During this step, and this step only, the provisioner should modify
the root machine configuration to add any additional features it
may need. Examples include sharing folders, networking, and so on.
This step is guaranteed to be called before any of those steps are
done so the provisioner may do that.

No return value is expected.

Source | Google | Stack overflow

Edit

git clone [email protected]:mitchellh/vagrant.git

cd vagrant

open lib/vagrant/plugin/v2/provisioner.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-Vagrant--Plugin--V2--Provisioner-configure-for-pr


# Commit to git

git add lib/vagrant/plugin/v2/provisioner.rbgit commit -m "better docs for Vagrant::Plugin::V2::Provisioner#configure"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-Vagrant--Plugin--V2--Provisioner-configure-for-pr

hub pull-request


# Celebrate!