From 45845c3596c09b2a75a9b494a2138075f888d7fd Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Mon, 12 Dec 2016 08:03:35 -0800 Subject: [PATCH] Update Vagrantfile to Ubuntu 16.04 (#10648) --- Vagrantfile | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index c750f638d0..8c6750f380 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,8 +4,16 @@ # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" +# Software version variables +GOVERSION = "1.7.4" +UBUNTUVERSION = "16.04" + +# CPU and RAM can be adjusted depending on your system +CPUCOUNT = "2" +RAM = "4096" + $script = <