vagrant/plugins
Russell Jackson a3c94ab910 Fix Linux NFS exports pruning due to bad `sed` expression
The mount id is a file path which will contain forward slashes. A
previous attempt (although notably missing in the Linux host plugin) at
fixing this used `String.gsub` to escape the forward slashes; however,
the solution that eventually made its way into the 1.5 release uses
`Regexp.escape` which doesn't escape forward slashes.

The Ruby `Regexp.escape` method does not escape forward slashes because
they are not RE meta-characters; their special meaning is specific to
sed expressions as delimiters. To avoid the issue entirely, we can use
an alternative delimiter by prefixing the address expression with a
backslash with the desired delimiter character following.

Use control character (ASCII code point `0x01`) as expression delimiter
so it is very unlikely an identifier will have a conflicting character
within it.
2014-03-12 12:25:53 -07:00
..
commands commands/plugin: list notes system gems 2014-03-03 14:57:42 -08:00
communicators/ssh fix timout typo 2014-03-11 17:27:47 +08:00
guests guests/redhat: force remove files so it works with pty 2014-03-05 16:22:55 -08:00
hosts Fix Linux NFS exports pruning due to bad `sed` expression 2014-03-12 12:25:53 -07:00
kernel_v1 kernel/v1: provisioner upgrade works properly [GH-3092] 2014-03-10 13:44:24 -07:00
kernel_v2 kernel/v2: fix error where options could be not hash 2014-02-18 10:41:14 -08:00
providers providers/virtualbox: style nitpick 2014-03-11 08:48:33 -07:00
provisioners Merge pull request #3126 from bbinet/fix-salt-provisioning 2014-03-11 09:05:50 -07:00
synced_folders synced_folders/rsync: convert to proper unix-style path [GH-3086] 2014-03-09 18:22:00 -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.