changeset 26140:a31ffc445f02

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).
author Kevin Bullock <kbullock@ringworld.org>
date Wed, 02 Sep 2015 11:52:24 -0500
parents f643b6863382
children fa6ba7c9600b
files contrib/vagrant/Vagrantfile
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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|