From f68382753fa9974018f500a90f4fa7e43fd6e2a9 Mon Sep 17 00:00:00 2001 From: obfuscurity Date: Sun, 1 Nov 2015 21:02:37 -0500 Subject: [PATCH 1/2] this trusty box also supports vmware, fixes #34 --- Vagrantfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 3b2bd57..da09bf1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,8 +5,7 @@ VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "synthesize" - config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" + config.vm.box = "mayflower/trusty64-puppet3" config.vm.network :forwarded_port, guest: 443, host: 8443 config.vm.network :forwarded_port, guest: 8125, host: 8125, protocol: 'tcp' config.vm.network :forwarded_port, guest: 8125, host: 8125, protocol: 'udp' From 7704300b20920c16563c9c999e19fb3d14464b52 Mon Sep 17 00:00:00 2001 From: obfuscurity Date: Sun, 1 Nov 2015 21:03:05 -0500 Subject: [PATCH 2/2] bump default graphite version while we're here --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index da09bf1..527b66f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -11,6 +11,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.network :forwarded_port, guest: 8125, host: 8125, protocol: 'udp' config.vm.network :forwarded_port, guest: 2003, host: 22003 config.vm.network :forwarded_port, guest: 2004, host: 22004 - graphite_version = ENV['GRAPHITE_RELEASE'].nil? ? '0.9.13-pre1' : ENV['GRAPHITE_RELEASE'] + graphite_version = ENV['GRAPHITE_RELEASE'].nil? ? '0.9.14' : ENV['GRAPHITE_RELEASE'] config.vm.provision "shell", inline: "cd /vagrant; GRAPHITE_RELEASE=#{graphite_version} ./install" end