aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2015-06-25 08:17:23 -0700
committerEvan Huus <eapache@gmail.com>2015-06-25 15:24:06 +0000
commit47abcfc74721ea8bac35dbb877db615081720cff (patch)
tree63e4f11ca9d4df013b477b07932aefeb6e030540 /Vagrantfile
parent92c8c3a3bda8fe04f27d3c022129b9472e86b011 (diff)
Vagrant setup fixes
- add license headers to the scripts - don't mount `.` into the VM manually, vagrant already puts it in /vagrant/ for us, just use that. - build with -j3, slightly more efficient even with two cores Change-Id: I43580ade7ae2635696072b39e4f18a401a030a85 Reviewed-on: https://code.wireshark.org/review/9127 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index e5e952c12b..6f286b6136 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -15,9 +15,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
v.cpus = 2
end
- # Share the source directory into the VM as `/wireshark`
- config.vm.synced_folder ".", "/wireshark"
-
# Permit X11 forwarding so running the graphical Wireshark works
config.ssh.forward_x11 = true