vagrant: Add fedora box

Change-Id: Ic33f3f5ee7e45d60f0eb7f50b94c919091fc3787
Reviewed-on: https://code.wireshark.org/review/29357
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
João Valverde 2018-08-30 21:37:07 +01:00 committed by Anders Broman
parent f2c74b7dbd
commit a1fe8fe066
1 changed files with 18 additions and 7 deletions

25
Vagrantfile vendored
View File

@ -6,9 +6,6 @@ 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
@ -19,9 +16,23 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.ssh.forward_x11 = true
# Install and build the various things (including wireshark!)
config.vm.provision "shell" do |s|
s.path = 'tools/debian-setup.sh'
s.args = ['--install-optional', '--assume-yes']
config.vm.define "ubuntu", autostart: false do |deb|
deb.vm.box = "ubuntu/xenial64"
deb.vm.provision "shell" do |s|
s.path = 'tools/debian-setup.sh'
s.args = ['--install-optional', '--assume-yes']
end
deb.vm.provision :shell, path: 'vagrant_build.sh', privileged: false
end
config.vm.define "fedora", autostart: false do |rpm|
rpm.vm.box = "fedora/28-cloud-base"
rpm.vm.provision "shell" do |s|
s.path = 'tools/rpm-setup.sh'
s.args = ['--install-optional', '--assumeyes']
end
rpm.vm.provision :shell, path: 'vagrant_build.sh', privileged: false
end
config.vm.provision :shell, path: 'vagrant_build.sh', privileged: false
end