vagrant: update to official Debian 8.1 base box
authorKevin Bullock <kbullock@ringworld.org>
Wed, 02 Sep 2015 11:52:24 -0500
changeset 26140 a31ffc445f02
parent 26139 f643b6863382
child 26141 fa6ba7c9600b
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).
contrib/vagrant/Vagrantfile
--- 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|