commit 973c9b0c2ae089e3043253890148d25dd550f756 Author: Simone Basso bassosimone@gmail.com Date: Mon May 30 10:50:21 2016 +0200
Vagrant: use box canonical name rather than URL (#84)
This allows us to get updates running `vagrant box update`.
While at it, add `/.vagrant/` to `.gitignore`. --- .gitignore | 3 +++ Vagrantfile | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore index 7fc5cbd..3f4029e 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,6 @@ installed-files.txt oonib.conf
oonib.pid + +# Local vagrant files +/.vagrant/ diff --git a/Vagrantfile b/Vagrantfile index 7aa5f71..a2abe0d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,8 +2,7 @@ # vi: set ft=ruby :
Vagrant.configure("2") do |config| - config.vm.box = "precise32" - config.vm.box_url = "http://files.vagrantup.com/precise32.box" + config.vm.box = "ubuntu/precise32"
# Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below,
tor-commits@lists.torproject.org