aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2018-03-18 23:09:11 +0100
committerSake Blok <sake.blok@SYN-bit.nl>2018-03-19 22:22:55 +0000
commit10b63fa684905c9df389e2661a19360c91b19ed8 (patch)
tree5ac803214914cf977d8f718552286253eaad8ac6 /Vagrantfile
parentacba1785460149b65a890a2b060ed87cf4e41102 (diff)
Fix and update the vagrant build system
Fix a dependency issue for the vagrant build system and update it to the latest Ubuntu LTS release (16.04 LTS). Also give it more vCPU's and RAM by default. Change-Id: I058e6a05356dba57a55ada7fe84f959e227a04b4 Reviewed-on: https://code.wireshark.org/review/26541 Reviewed-by: Sake Blok <sake.blok@SYN-bit.nl>
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 6f286b6136..cf129a2195 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -6,13 +6,13 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
- # Base box is Ubuntu 14.04
- config.vm.box = "ubuntu/trusty64"
+ # Base box is Ubuntu 16.04
+ config.vm.box = "ubuntu/xenial64"
# Bump the default resources as building is expensive
config.vm.provider "virtualbox" do |v|
- v.memory = 1024
- v.cpus = 2
+ v.memory = 2048
+ v.cpus = 4
end
# Permit X11 forwarding so running the graphical Wireshark works