X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/357ba2f64d246706a9bbc7b41c4f1ffdba9f3b40..cca366196d0180d45ec733ea60e44b905bc97260:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index fa23bd18..87118c43 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -15,6 +15,15 @@ Vagrant.configure("2") do |config| end config.vm.define "ubuntu", primary: true do |sub| + sub.vm.box = "bento/ubuntu-20.04" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Ubuntu-20.sh" + s.privileged = false + s.args = [checkout] + end + end + + config.vm.define "ubuntu18", primary: true do |sub| sub.vm.box = "bento/ubuntu-18.04" sub.vm.provision :shell do |s| s.path = "vagrant/Install-on-Ubuntu-18.sh"