» Usage

The Vagrant VMware provider is used just like any other provider. Pleaseread the general basic usage page forproviders.

The value to use for the —provider flag is vmware_desktop. For compatibilitywith older versions of the plugin, vmware_fusion can be used for VMwareFusion, 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:

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

Then run:

  1. $ vagrant up --provider vmware_desktop

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