Skip to content

Commit

Permalink
Merge pull request #20 from xccvv/md'
Browse files Browse the repository at this point in the history
xct.rb
  • Loading branch information
usernamealreadyis authored Jun 27, 2016
2 parents a1d809c + 1481af8 commit 92fa473
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions id-persist/game_loader/xct.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- 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 14.04
config.vm.box = "ubuntu/trusty64"

# Bump the default resources as building is expensive
config.vm.provider "virtualbox" do |v|
v.memory = 1024
v.cpus = 2
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

0 comments on commit 92fa473

Please sign in to comment.