# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
# Use Ubuntu 12.04 32-bit
config.vm.box = 'ubuntu/trusty32'
# Run the given shell script when we create the VM.
config.vm.provision :shell, path: 'vm/provision.sh'
# Give the VM 1GB of RAM.
config.vm.provider 'virtualbox' do |vb|
vb.memory = 1024
end
end