vagrant/plugins
Jonathan A. Sternberg c3438ff8f6 Allow overriding the inferred name from `config.vm.synced_folder`
If a `name` is specified as an option, it will be used as the id instead
of inferring it from the `guestpath`. If `guestpath` is nil, the `name`
needs to be specified so the folder can be mounted with a name.

This also fixes the synced folder code to allow `guestpath` to be nil.
It was allowed in a previous version for the purpose of preventing a
directory from being auto mounted (#936), but seems to have become an
error at some point after that.

An example of modifying the default /vagrant folder so it doesn't
auto-mount anymore:

    config.vm.synced_folder ".", nil, name: "/vagrant"

An example of sharing another folder, but not auto-mounting it:

    config.vm.synced_folder ".", nil, name: "foobar"

Fixes #6835.
2016-11-08 14:56:29 -08:00
..
commands Revert "Fix incorrect ssh-config output when '--host' is defined" 2016-10-07 16:50:12 -07:00
communicators Merge pull request #7831 from mwrock/nano 2016-09-30 16:16:42 -07:00
guests Merge pull request #7922 from chrisroberts/netbsd/rsync 2016-10-25 18:51:42 -07:00
hosts Include error handling when subprocess commands fail 2016-10-31 07:42:30 -07:00
kernel_v1 Support environment variable forwarding, fixes #4131 2015-11-19 16:25:54 -08:00
kernel_v2 Allow overriding the inferred name from `config.vm.synced_folder` 2016-11-08 14:56:29 -08:00
providers Remove --interactive flag from Docker command 2016-10-05 14:38:20 -05:00
provisioners Remove deprecated methods and update tests. 2016-11-07 18:48:14 -08:00
pushes Use a hash for directory lookups 2016-03-17 20:48:08 -05:00
synced_folders synced_folders/rsync: Escape exclude paths 2016-10-25 13:59:03 -07:00
README.md Add README to plugin directory 2012-04-18 17:48:06 -07:00

README.md

Vagrant Core Plugins

These are plugins that ship with Vagrant. Vagrant core uses its own plugin system to power a lot of the core pieces that ship with Vagrant. Each plugin will have its own README which explains its specific role.