From 9d8743a7aed88083b1a7c24a1a684e7a79108c15 Mon Sep 17 00:00:00 2001 From: Brian McCallister Date: Thu, 25 Apr 2013 05:59:31 -0600 Subject: [PATCH] vmware fusion provider config --- Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 0c3b4a021b..41ec6965b5 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -50,4 +50,9 @@ Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config| config.vm.box = BOX_NAME config.vm.box_url = BOX_URI end + + config.vm.provider :vmware_fusion do |vm| + config.vm.box = "precise64" + config.vm.box_url = "http://files.vagrantup.com/precise64_vmware_fusion.box" + end end