github.com/blixtra/rkt@v0.8.1-0.20160204105720-ab0d1add1a43/Vagrantfile (about)

     1  Vagrant.configure('2') do |config|
     2      # grab Ubuntu 15.04 official image
     3      config.vm.box = "ubuntu/vivid64" # Ubuntu 15.04
     4  
     5      # fix issues with slow dns http://serverfault.com/a/595010
     6      config.vm.provider :virtualbox do |vb, override|
     7          vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
     8          vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
     9          # add more ram, the default isn't enough for the build
    10          vb.customize ["modifyvm", :id, "--memory", "1024"]
    11      end
    12  
    13      config.vm.synced_folder ".", "/vagrant", type: "rsync"
    14      config.vm.provision :shell, :privileged => true, :path => "scripts/install-vagrant.sh"
    15  end