From 91fde9d8b5bd9dcaffec54b3228aab6b0916cc06 Mon Sep 17 00:00:00 2001 From: Anirudh Rekhi Date: Tue, 8 Nov 2016 11:13:13 -0800 Subject: [PATCH] Update Vagrant memory and Box --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 9eed0f0..91c6a3e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,7 +3,7 @@ release = ENV['RELEASE'] ? ENV['RELEASE'] : 'stable' hostname = ENV['HOSTNAME'] ? ENV['HOSTNAME'] : 'st2vagrant' -box = ENV['BOX'] ? ENV['BOX'] : 'bento/ubuntu-14.04' +box = ENV['BOX'] ? ENV['BOX'] : 'ubuntu/trusty64' st2user = ENV['ST2USER'] ? ENV['ST2USER']: 'st2admin' st2passwd = ENV['ST2PASSWORD'] ? ENV['ST2PASSWORD'] : 'Ch@ngeMe' @@ -19,7 +19,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Box Specifications st2.vm.provider :virtualbox do |vb| vb.name = "#{hostname}" - vb.memory = 1028 + vb.memory = 2048 vb.cpus = 2 end