From 8ecb88a760a473b62286a6f619a6db037e4fd7d6 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Mon, 1 Apr 2013 21:06:29 -0300 Subject: [PATCH] Add a precise64 box so that we can test lxc 0.7.5 --- development/Vagrantfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/development/Vagrantfile b/development/Vagrantfile index d007df8..42af709 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -49,6 +49,12 @@ Vagrant.configure("2") do |config| end end + config.vm.define :precise do |precise| + precise.vm.box = 'precise64' + precise.vm.hostname = 'vbox' + precise.vm.box_url = 'http://files.vagrantup.com/precise64.box' + end + config.vm.define :lxc do |lxc_config| lxc_config.vm.hostname = 'lxc-dev-box' lxc_config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-31.box'