X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2ab9e4acd3a2ceb5ff871b6b6afc786377e8739f..f8e1d392085fe5319dce03957874d9efddd9fc54:/Vagrantfile?ds=inline 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"