X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a165072915051462392ca092ccdc439633778c96..01b009ff24494408b8b568bcc0f6c4ad4156b9ce:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index 4740f879..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" @@ -61,6 +70,18 @@ Vagrant.configure("2") do |config| sub.vm.synced_folder ".", "/vagrant", disabled: true end + config.vm.define "centos8" do |sub| + sub.vm.box = "generic/centos8" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Centos-8.sh" + s.privileged = false + s.args = "yes" + end + sub.vm.synced_folder ".", "/home/vagrant/Nominatim", disabled: true + sub.vm.synced_folder ".", "/vagrant", disabled: true + end + + config.vm.provider "virtualbox" do |vb| vb.gui = false vb.memory = 2048