
* Add simple Vagrantfile to provision an Ubuntu 14.04 VM with the bootstrap.sh script * Update README with instructions for use Change-Id: I94cd69742aeffab4c01a27510c25f381151bfefe
8 lines
167 B
Ruby
8 lines
167 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.box = "ubuntu/trusty64"
|
|
config.vm.provision "shell", path: "bootstrap.sh"
|
|
end
|