Skip to content

Instantly share code, notes, and snippets.

@phumpal
Created July 11, 2013 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phumpal/5980188 to your computer and use it in GitHub Desktop.
Save phumpal/5980188 to your computer and use it in GitHub Desktop.
Simple Vagrant file for vmware_fusion provider
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "gtl"
config.vm.box_url = "http://files.vagrantup.com/precise64_vmware.box"
config.vm.network :public_network
config.vm.provider :vmware_fusion do |vmw|
vmw.vmx['memsize'] = '2048'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment