12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # -*- mode: ruby -*-
- # vi: set ft=ruby :
- #
- # Source https://github.com/alxn/vpp/blob/master/build-root/vagrant/Vagrantfile
- Vagrant.configure(2) do |config|
- config.vm.box = "bento/ubuntu-16.04"
- config.vm.box_version = "2.2.9"
- config.vm.provision 'shell', path: 'bootstrap.ubuntu.sh'
- # Add .gnupg dir in so folks can sign patches
- # Note, as gnupg puts socket files in that dir, we have
- # to be cautious and make sure we are dealing with a plain file
- homedir = File.expand_path("~/")
- Dir["#{homedir}/.gnupg/**/*"].each do |fname|
- if File.file?(fname)
- destname = fname.sub(Regexp.escape("#{homedir}/"),'')
- config.vm.provision "file", source: fname, destination: destname
- end
- end
- # Copy in the .gitconfig if it exists
- if File.file?(File.expand_path("~/.gitconfig"))
- config.vm.provision "file", source: "~/.gitconfig", destination: ".gitconfig"
- end
- # vagrant-cachier caches apt/yum etc to speed subsequent
- # vagrant up
- # to enable, run
- # vagrant plugin install vagrant-cachier
- #
- if Vagrant.has_plugin?("vagrant-cachier")
- config.cache.scope = :box
- end
- # use http proxy if avaiable
- if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf")
- config.proxy.http = "$http_proxy"
- config.proxy.https = "$https_proxy"
- config.proxy.no_proxy = "localhost,127.0.0.1"
- end
- config.vm.synced_folder "../../", "/gnunet", disabled: false
- config.vm.provider "virtualbox" do |vb|
- vb.memory = "4096"
- end
- config.vm.provider "vmware_fusion" do |fusion,override|
- fusion.vmx["memsize"] = "4096"
- end
- config.vm.provider "vmware_workstation" do |vws,override|
- vws.vmx["memsize"] = "4096"
- vws.vmx["numvcpus"] = "4"
- end
- end
|