From 2e55585eff0dd2f04625f82658affe90f8eeba45 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Wed, 8 May 2013 19:50:00 -0300 Subject: [PATCH] Allow acceptance specs to be run against different boxes --- spec/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Vagrantfile b/spec/Vagrantfile index bb8cd3a..6cd3997 100644 --- a/spec/Vagrantfile +++ b/spec/Vagrantfile @@ -5,7 +5,7 @@ Vagrant.require_plugin 'vagrant-lxc' Vagrant.require_plugin 'vagrant-cachier' Vagrant.configure("2") do |config| - config.vm.box = "quantal64" + config.vm.box = ENV.fetch('BOX_NAME', 'quantal64') config.vm.hostname = 'lxc-test-box' config.cache.enable :apt