X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/6fc32d9645f98ec39c8773d6bf01cc2f6d4969de..0adb8cb765efc7107b6f500764732f85809a97bf:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index f32640f1..09e7eab9 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,12 +3,14 @@ Vagrant.configure("2") do |config| # 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" + if ENV['CHECKOUT'] != 'y' then + config.vm.synced_folder ".", "/home/vagrant/Nominatim" + end config.vm.define "ubuntu" do |sub| sub.vm.box = "ubuntu/trusty64" @@ -20,7 +22,7 @@ Vagrant.configure("2") do |config| end config.vm.define "centos" do |sub| sub.vm.box = "bento/centos-7.2" - sub.vm.provision :shell, :path => "vagrant/centos-7-provision.sh" + sub.vm.provision :shell, :path => "vagrant/install-on-centos-7.sh" end # configure shared package cache if possible