X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c052fbf28d1d6b8fbd8df9c8ea54a4ce9e5ebb08..0546ebb7b0ad3cd9ee904fa988908dde676d9596:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index c087c0cf4..b446b5c5f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,8 +2,7 @@ # vi: set ft=ruby : Vagrant.configure("2") do |config| - config.vm.box = "precise64" - config.vm.box_url = "http://files.vagrantup.com/precise64.box" + config.vm.box = "sputnik13/trusty64" if Vagrant.has_plugin?("vagrant-cachier") config.cache.enable :apt @@ -14,7 +13,8 @@ Vagrant.configure("2") do |config| config.vm.network :forwarded_port, :guest => 3000, :host => 3000 # set up synced folder to source in /srv/openstreetmap-website - config.vm.synced_folder ".", "/srv/openstreetmap-website" + config.vm.synced_folder ".", "/srv/openstreetmap-website", + :rsync__exclude => ["config/application.yml", "config/database.yml"] # provision using a simple shell script config.vm.provision :shell, :path => "script/vagrant/setup/provision.sh"