+ 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