From 876724f84be5948910605a23e5c06991d2dc0290 Mon Sep 17 00:00:00 2001 From: Brian McCallister Date: Thu, 25 Apr 2013 05:59:31 -0600 Subject: [PATCH 1/3] vmware fusion provider config Upstream-commit: 9d8743a7aed88083b1a7c24a1a684e7a79108c15 Component: engine --- components/engine/Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/engine/Vagrantfile b/components/engine/Vagrantfile index 0c3b4a021b..41ec6965b5 100644 --- a/components/engine/Vagrantfile +++ b/components/engine/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 From 73e8a8723447d08db14479984721aef89317785d Mon Sep 17 00:00:00 2001 From: Brian McCallister Date: Thu, 25 Apr 2013 06:09:04 -0600 Subject: [PATCH 2/3] get aufs dependencies into vmware image Upstream-commit: 9c7293508dd849bf9086b5095b7412214d56b801 Component: engine --- components/engine/Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/engine/Vagrantfile b/components/engine/Vagrantfile index 41ec6965b5..c62980fdeb 100644 --- a/components/engine/Vagrantfile +++ b/components/engine/Vagrantfile @@ -54,5 +54,10 @@ Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config| config.vm.provider :vmware_fusion do |vm| config.vm.box = "precise64" config.vm.box_url = "http://files.vagrantup.com/precise64_vmware_fusion.box" + config.vm.provision :shell, :inline => <<-UPDATE + apt-get update + apt-get dist-upgrade + apt-get install linux-image-extra-3.2.0-40-virtual + UPDATE end end From 8dd14227bfce661ad845f02827639b09a4f23956 Mon Sep 17 00:00:00 2001 From: Brian McCallister Date: Thu, 25 Apr 2013 06:29:13 -0600 Subject: [PATCH 3/3] don't fight the box kernel version, not worth it Upstream-commit: 4db680fda47306586819a41b80a9a2f6a67f0eb9 Component: engine --- components/engine/Vagrantfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/engine/Vagrantfile b/components/engine/Vagrantfile index c62980fdeb..2738d0ff7b 100644 --- a/components/engine/Vagrantfile +++ b/components/engine/Vagrantfile @@ -55,9 +55,7 @@ Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config| config.vm.box = "precise64" config.vm.box_url = "http://files.vagrantup.com/precise64_vmware_fusion.box" config.vm.provision :shell, :inline => <<-UPDATE - apt-get update - apt-get dist-upgrade - apt-get install linux-image-extra-3.2.0-40-virtual + apt-get install -y linux-image-extra-3.2.0-29-virtual UPDATE end end