vagrant: update to official Debian 8.1 base box
Debian now rolls their own official Vagrant base boxes, so use that. At
the same time, we're updating from Debian 7.4 (wheezy) to 8.1 (jessie),
and switching from 32-bit to 64-bit (Debian does not provide 32-bit base
boxes).
--- a/contrib/vagrant/Vagrantfile Tue Sep 01 14:41:41 2015 -0400
+++ b/contrib/vagrant/Vagrantfile Wed Sep 02 11:52:24 2015 -0500
@@ -1,9 +1,8 @@
# -*- mode: ruby -*-
Vagrant.configure('2') do |config|
- # Debian 7.4 32-bit i386 without configuration management software
- config.vm.box = "puppetlabs/debian-7.4-32-nocm"
- #config.vm.box = "pnd/debian-wheezy32-basebox"
+ # Debian 8.1 x86_64 without configuration management software
+ config.vm.box = "debian/jessie64"
config.vm.hostname = "tests"
config.vm.define "tests" do |conf|