Introduction

This is a Work in Progress to build official Debian base boxes for Vagrant available in Vagrant Cloud. This blog post from Joey Hess provides a good overview of why we need official Debian base boxes.

Report bugs

see https://app.vagrantup.com/debian/

Base Box details

Content

Standard Debian system, as created by debootstrap with all packages with priority required, important, standard, and vagrant unix user, set up according to Upstream recommendations

Provisioners

The box does not include provisioners. You can install them at startup by adding in your Vagrantfile:

# puppet
config.vm.provision "shell", inline: "apt-get install --yes puppet"
# ansible does not need a client, but needs python-apt to install packages
config.vm.provision "shell", inline: "apt-get install --yes python-apt"

Shared folders

Build process

The boxes are currently built with fai-diskimage from https://salsa.debian.org/cloud-team/debian-vagrant-images and uploaded to Hashicorps's Vagrant cloud.

See ?Teams/Cloud/RebuildVagrantBaseBoxes to rebuild the boxes yourself or extend them.