From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/vagrant/vmware%2Fusage.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 devdocs/vagrant/vmware%2Fusage.html (limited to 'devdocs/vagrant/vmware%2Fusage.html') diff --git a/devdocs/vagrant/vmware%2Fusage.html b/devdocs/vagrant/vmware%2Fusage.html new file mode 100644 index 00000000..1450b4d6 --- /dev/null +++ b/devdocs/vagrant/vmware%2Fusage.html @@ -0,0 +1,13 @@ +

Usage

The Vagrant VMware provider is used just like any other provider. Please read the general basic usage page for providers.

The value to use for the --provider flag is vmware_desktop. For compatibility with older versions of the plugin, vmware_fusion can be used for VMware Fusion, and vmware_workstation for VMware Workstation.

The Vagrant VMware provider does not support parallel execution at this time. Specifying the --parallel option will have no effect.

To get started, create a new Vagrantfile that points to a VMware box:

# vagrant init hashicorp/precise64
+Vagrant.configure("2") do |config|
+  config.vm.box = "hashicorp/precise64"
+end
+
+

Then run:

$ vagrant up --provider vmware_desktop
+
+

This will download and bring up a new VMware Fusion/Workstation virtual machine in Vagrant.

+

+ © 2010–2018 Mitchell Hashimoto
Licensed under the MPL 2.0 License.
+ https://www.vagrantup.com/docs/vmware/usage.html +

+
-- cgit v1.2.3