diff --git a/.gitignore b/.gitignore index a6bf2c7..817a47b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -*~ target -testcases + .vagrant +ubuntu-xenial-16.04-cloudimg-console.log diff --git a/Vagrantfile b/Vagrantfile index 9225afc..5468b9c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,11 +1,15 @@ -Vagrant.configure("2") do |config| - config.vm.provider "virtualbox" do |v| +Vagrant.configure(2) do |config| + config.vm.provider :virtualbox do |v| + v.name = 'exa' v.memory = 1024 v.cpus = 1 end - config.vm.box = "debian/jessie64" - config.vm.hostname = "exa" + + # We use Ubuntu instead of Debian because the image comes with two-way + # shared folder support by default. + config.vm.box = 'ubuntu/xenial64' + config.vm.hostname = 'exa' # Install the dependencies needed for exa to build.