Skip to content

Instantly share code, notes, and snippets.

@alexpatel
Last active March 16, 2017 16:32
Show Gist options
  • Save alexpatel/4c262fc1685e5f4488a8212276d763e5 to your computer and use it in GitHub Desktop.
Save alexpatel/4c262fc1685e5f4488a8212276d763e5 to your computer and use it in GitHub Desktop.
Vagrantfile for hacking on strace
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
config.vm.provision "shell", inline: <<-SHELL
git git clone git@github.com:strace/strace.git
sudo apt-get install -y git autoconf
cd strace
./bootstrap
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment