From aaae366e9d947e6c8fc43c0032636cc30559a596 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 1 Mar 2010 01:16:45 -0800 Subject: [PATCH] Updated template Vagrant file to use "base" box by default --- templates/Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/Vagrantfile b/templates/Vagrantfile index 39741849f..94bdc8606 100644 --- a/templates/Vagrantfile +++ b/templates/Vagrantfile @@ -2,4 +2,7 @@ Vagrant::Config.run do |config| # All Vagrant configuration is done here. For a detailed explanation # and listing of configuration options, please check the documentation # online. + + # Every Vagrant virtual environment requires a box to build off of. + config.vm.box = "base" end