wireshark/Vagrantfile
Sake Blok 10b63fa684 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>
2018-03-19 22:22:55 +00:00

25 lines
716 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# 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 = 2048
v.cpus = 4
end
# Permit X11 forwarding so running the graphical Wireshark works
config.ssh.forward_x11 = true
# Install and build the various things (including wireshark!)
config.vm.provision :shell, path: 'vagrant_provision.sh'
config.vm.provision :shell, path: 'vagrant_build.sh', privileged: false
end