X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/b303c785e94f426feaf59d2c798a9bc3e096014d..a48ebd9b477318bc5fdb44d7dc6bbf695911a4b9:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index ee246d3b..033e1507 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,67 +4,107 @@ Vagrant.configure("2") do |config| # Apache webserver config.vm.network "forwarded_port", guest: 80, host: 8089 + config.vm.network "forwarded_port", guest: 8088, host: 8088 # If true, then any SSH connections made will enable agent forwarding. config.ssh.forward_agent = true + # Never sync the current directory to /vagrant. + config.vm.synced_folder ".", "/vagrant", disabled: true + checkout = "yes" if ENV['CHECKOUT'] != 'y' then - config.vm.synced_folder ".", "/home/vagrant/Nominatim" - checkout = "no" + checkout = "no" + end + + config.vm.provider "virtualbox" do |vb, override| + vb.gui = false + vb.memory = 2048 + vb.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate//vagrant","0"] + if ENV['CHECKOUT'] != 'y' then + override.vm.synced_folder ".", "/home/vagrant/Nominatim" + end + end + + config.vm.provider "libvirt" do |lv, override| + lv.memory = 2048 + lv.nested = true + if ENV['CHECKOUT'] != 'y' then + override.vm.synced_folder ".", "/home/vagrant/Nominatim", type: 'nfs' + end end config.vm.define "ubuntu", primary: true do |sub| - sub.vm.box = "bento/ubuntu-16.04" + sub.vm.box = "generic/ubuntu2004" sub.vm.provision :shell do |s| - s.path = "vagrant/Install-on-Ubuntu-16.sh" + s.path = "vagrant/Install-on-Ubuntu-20.sh" s.privileged = false s.args = [checkout] end end - config.vm.define "travis" do |sub| - sub.vm.box = "bento/ubuntu-14.04" + config.vm.define "ubuntu-apache" do |sub| + sub.vm.box = "generic/ubuntu2004" sub.vm.provision :shell do |s| - s.path = "vagrant/install-on-travis-ci.sh" + s.path = "vagrant/Install-on-Ubuntu-20.sh" s.privileged = false - s.args = [checkout] + s.args = [checkout, "install-apache"] end end - config.vm.define "centos" do |sub| - sub.vm.box = "centos/7" + config.vm.define "ubuntu-nginx" do |sub| + sub.vm.box = "generic/ubuntu2004" sub.vm.provision :shell do |s| - s.path = "vagrant/Install-on-Centos-7.sh" + s.path = "vagrant/Install-on-Ubuntu-20.sh" s.privileged = false - s.args = "yes" - sub.vm.synced_folder ".", "/vagrant", disabled: true + s.args = [checkout, "install-nginx"] end end - # configure shared package cache if possible - #if Vagrant.has_plugin?("vagrant-cachier") - # config.cache.enable :apt - # config.cache.scope = :box - #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.provider "virtualbox" do |vb| - vb.gui = false - vb.customize ["modifyvm", :id, "--memory", "2048"] + 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 + config.vm.define "centos7" do |sub| + sub.vm.box = "centos/7" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Centos-7.sh" + s.privileged = false + s.args = [checkout] + end + end - # config.vm.provider :digital_ocean do |provider, override| - # override.ssh.private_key_path = '~/.ssh/id_rsa' - # override.vm.box = 'digital_ocean' - # override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box" + config.vm.define "centos" 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 = [checkout] + end + end - # provider.token = '' - # # provider.token = 'YOUR TOKEN' - # provider.image = 'ubuntu-14-04-x64' - # provider.region = 'nyc2' - # provider.size = '512mb' - # end end