X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/d7c3f04e04b709a989bdf76987b8843ce949cfe3..cc785ccad06a5ae0a8a4f81de35910d0826ff185:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index 1b165327..d369fcd6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,35 +2,55 @@ # vi: set ft=ruby : Vagrant.configure("2") do |config| - - # Ubuntu LTS 14.04 - config.vm.box = "ubuntu/trusty64" - # Apache webserver - config.vm.network "forwarded_port", guest: 8089, host: 8089 - + config.vm.network "forwarded_port", guest: 80, host: 8089 # If true, then any SSH connections made will enable agent forwarding. config.ssh.forward_agent = true - config.vm.synced_folder ".", "/home/vagrant/Nominatim" - + checkout = "yes" + if ENV['CHECKOUT'] != 'y' then + config.vm.synced_folder ".", "/home/vagrant/Nominatim" + checkout = "no" + end + config.vm.define "ubuntu", primary: true do |sub| + sub.vm.box = "bento/ubuntu-16.04" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Ubuntu-16.sh" + s.privileged = false + s.args = [checkout] + end + end - # provision using a simple shell script - config.vm.provision :shell, :path => "vagrant-provision.sh" + config.vm.define "travis" do |sub| + sub.vm.box = "bento/ubuntu-14.04" + sub.vm.provision :shell do |s| + s.path = "vagrant/install-on-travis-ci.sh" + s.privileged = false + s.args = [checkout] + end + end + config.vm.define "centos" do |sub| + sub.vm.box = "bento/centos-7.2" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Centos-7.sh" + s.privileged = false + s.args = [checkout] + end + end # configure shared package cache if possible - if Vagrant.has_plugin?("vagrant-cachier") - config.cache.enable :apt - config.cache.scope = :box - end + #if Vagrant.has_plugin?("vagrant-cachier") + # config.cache.enable :apt + # config.cache.scope = :box + #end config.vm.provider "virtualbox" do |vb| vb.gui = false - vb.customize ["modifyvm", :id, "--memory", "1024"] + vb.customize ["modifyvm", :id, "--memory", "2048"] end