polserver/Vagrantfile
Eric Swanson 05afc9b851
Upgrade Vagrant setup to Ubuntu 20.04 (focal64) (#236)
* Upgrade Vagrant setup to Ubuntu 20.04 (focal64)

* Add clang and clang-format.

Now build_tools.sh -c works too

* Update comment: refer to git repo, not SVN
2020-08-20 09:47:21 +02:00

22 lines
679 B
Ruby

# -*- 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|
config.vm.box = "ubuntu/focal64"
config.vm.provision :shell, :path => "./devmachine/prepareMachine.sh"
config.vm.boot_timeout = 600
# Forwards port 5003 from the VM to port 5004 at host (useful for testing)
config.vm.network :forwarded_port, guest: 5003, host: 5004
config.vm.provider "virtualbox" do |v|
v.memory = 3024
v.cpus = 2
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end
end