X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a2994fc55ceaad974e6cfda80394d246a3fa5a3f..ff6c3a705be5477d32d832df174107e65c3556a5:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index 30bc9375..889bad36 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,15 +8,19 @@ Vagrant.configure("2") do |config| # If true, then any SSH connections made will enable agent forwarding. config.ssh.forward_agent = true - config.vm.synced_folder ".", "/home/vagrant/Nominatim" + #config.vm.synced_folder ".", "/home/vagrant/Nominatim" config.vm.define "ubuntu" do |sub| sub.vm.box = "ubuntu/trusty64" sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-provision.sh" end + config.vm.define "ubuntu-php7" do |sub| + sub.vm.box = "ubuntu/trusty64" + sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-php7-provision.sh" + 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