# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  # Every Vagrant virtual environment requires a box to build off of.
  config.vm.box = "trusty32"
  # The url from where the 'config.vm.box' box will be fetched if it
  config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box"
  #config.vm.provider :virtualbox do |vb|
  #    vb.customize [ "modifyvm", :id, "--memory", "3072" ]
  #end
  # The list of software to install
  config.vm.provision :shell, :path => "bootstrap.sh"
end

