From f1f4003fa9434d22235eb3b2edc8a47edb827f1e Mon Sep 17 00:00:00 2001 From: jeff-jk <436167+jeff-jk@users.noreply.github.com> Date: Wed, 3 Oct 2018 15:32:06 -0600 Subject: [PATCH 1/2] Add :windows to config.vm.guest option This commit updates the documentation so that it is more clear that Windows guests need to change the `config.vm.guest` option along with the `config.vm.communicator` option. --- website/source/docs/vagrantfile/machine_settings.html.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/source/docs/vagrantfile/machine_settings.html.md b/website/source/docs/vagrantfile/machine_settings.html.md index 2854e5c40..ed15b8d16 100644 --- a/website/source/docs/vagrantfile/machine_settings.html.md +++ b/website/source/docs/vagrantfile/machine_settings.html.md @@ -125,9 +125,9 @@ Defaults to 60 seconds. `config.vm.guest` - The guest OS that will be running within this machine. This defaults to `:linux`, and Vagrant will auto-detect the -proper distro. Vagrant needs to know this information to perform some -guest OS-specific things such as mounting folders and configuring -networks. +proper distro. However, this should be changed to `":windows"` for Windows guests. +Vagrant needs to know this information to perform some guest OS-specific things +such as mounting folders and configuring networks.
From 141bcc03f5b4dec95644e5e7f8f82a50efb3d6e3 Mon Sep 17 00:00:00 2001 From: jeff-jk <436167+jeff-jk@users.noreply.github.com> Date: Wed, 3 Oct 2018 17:36:24 -0600 Subject: [PATCH 2/2] :windows should be a symbol in machine_settings doc This should just be a symbol :windows rather than a string ":windows" --- website/source/docs/vagrantfile/machine_settings.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/vagrantfile/machine_settings.html.md b/website/source/docs/vagrantfile/machine_settings.html.md index ed15b8d16..e529db497 100644 --- a/website/source/docs/vagrantfile/machine_settings.html.md +++ b/website/source/docs/vagrantfile/machine_settings.html.md @@ -125,7 +125,7 @@ Defaults to 60 seconds. `config.vm.guest` - The guest OS that will be running within this machine. This defaults to `:linux`, and Vagrant will auto-detect the -proper distro. However, this should be changed to `":windows"` for Windows guests. +proper distro. However, this should be changed to `:windows` for Windows guests. Vagrant needs to know this information to perform some guest OS-specific things such as mounting folders and configuring networks.