summaryrefslogtreecommitdiff
path: root/Vagrantfile
blob: 82a660f6d1c1a03d554b7da8fe1c42ba39b89499 (plain)
1
2
3
4
5
6
7
8
9
10
Vagrant.configure(2) do |config|
  config.vm.hostname = 'netaddr-' + `whoami`.chomp.downcase
  config.vm.box = "ubuntu/trusty64"
  config.ssh.forward_agent = true

  config.vm.provider "virtualbox" do |v|
    v.memory = 1024
    v.cpus = 2
  end
end