From cb69836fb7fd289e33f90b9947e1ad5db73349db Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Fri, 12 Apr 2019 15:39:16 -0700 Subject: [PATCH 1/2] Reword documentation for VAGRANT_DISABLE_VBOXSYMLINKCREATE option Follow-up from #10790 --- .../docs/other/environmental-variables.html.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/website/source/docs/other/environmental-variables.html.md b/website/source/docs/other/environmental-variables.html.md index a49e2c889..a4b5e8ab0 100644 --- a/website/source/docs/other/environmental-variables.html.md +++ b/website/source/docs/other/environmental-variables.html.md @@ -134,10 +134,14 @@ This can be disabled setting this environment variable. ## `VAGRANT_DISABLE_VBOXSYMLINKCREATE` -If set, this will disable the ability to create symlinks with all virtualbox -shared folders. Defaults to true if the option is not set. This can be overridden -on a per-folder basis within your Vagrantfile config by settings the -`SharedFoldersEnableSymlinksCreate` option to true. +If set, this will completely disable the ability to create symlinks with all VirtualBox +shared folders. If this environment variable is not set, the VirtualBox synced +folders option `SharedFoldersEnableSymlinksCreate` will be enabled by default. +This option can be overridden on a per-folder basis within your Vagrantfile +config by settings the `SharedFoldersEnableSymlinksCreate` option to true if you +do not wish to completely disable this feature for all VirtualBox guests. + +More information on the option can be read in the [VirtualBox synced folders docs page.](/docs/synced-folders/virtualbox.html#sharedfoldersenablesymlinkscreate) ## `VAGRANT_DOTFILE_PATH` From e0cd29e3012b79d964e71acafe98829a16436bc2 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Fri, 12 Apr 2019 15:48:31 -0700 Subject: [PATCH 2/2] Fixup docs for environment variable --- website/source/docs/other/environmental-variables.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/other/environmental-variables.html.md b/website/source/docs/other/environmental-variables.html.md index a4b5e8ab0..9d2e5fa80 100644 --- a/website/source/docs/other/environmental-variables.html.md +++ b/website/source/docs/other/environmental-variables.html.md @@ -138,7 +138,7 @@ If set, this will completely disable the ability to create symlinks with all Vir shared folders. If this environment variable is not set, the VirtualBox synced folders option `SharedFoldersEnableSymlinksCreate` will be enabled by default. This option can be overridden on a per-folder basis within your Vagrantfile -config by settings the `SharedFoldersEnableSymlinksCreate` option to true if you +config by setting the `SharedFoldersEnableSymlinksCreate` option to true if you do not wish to completely disable this feature for all VirtualBox guests. More information on the option can be read in the [VirtualBox synced folders docs page.](/docs/synced-folders/virtualbox.html#sharedfoldersenablesymlinkscreate)