From: marc tobias Date: Mon, 29 May 2023 22:22:18 +0000 (+0200) Subject: Vagrantfile - remove Ubuntu 18 X-Git-Tag: v4.3.0~73^2 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/2e46bc0aea00e55fa2bb776e70723f308f40ded5 Vagrantfile - remove Ubuntu 18 --- diff --git a/Vagrantfile b/Vagrantfile index 0cc511c5..57e64c2c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -95,32 +95,4 @@ Vagrant.configure("2") do |config| s.args = [checkout, "install-nginx"] end end - - config.vm.define "ubuntu18" do |sub| - sub.vm.box = "generic/ubuntu1804" - sub.vm.provision :shell do |s| - s.path = "vagrant/Install-on-Ubuntu-18.sh" - s.privileged = false - s.args = [checkout] - end - end - - config.vm.define "ubuntu18-apache" do |sub| - sub.vm.box = "generic/ubuntu1804" - sub.vm.provision :shell do |s| - s.path = "vagrant/Install-on-Ubuntu-18.sh" - s.privileged = false - s.args = [checkout, "install-apache"] - end - end - - config.vm.define "ubuntu18-nginx" do |sub| - sub.vm.box = "generic/ubuntu1804" - sub.vm.provision :shell do |s| - s.path = "vagrant/Install-on-Ubuntu-18.sh" - s.privileged = false - s.args = [checkout, "install-nginx"] - end - end - end