From 2f546bc10ce12bbad453b1d6c6e838ba8d59899f Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sun, 31 Mar 2013 01:04:51 -0300 Subject: [PATCH] Update base box references --- README.md | 2 +- development/Vagrantfile | 2 +- example/Vagrantfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 435f48d..e77f117 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ After that you can create a `Vagrantfile` like the one below and run `vagrant up ```ruby Vagrant.configure("2") do |config| config.vm.box = "lxc-quantal64" - config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-26.box' + config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-31.box' # Share an additional folder to the guest Container. The first argument # is the path on the host to the actual folder. The second argument is diff --git a/development/Vagrantfile b/development/Vagrantfile index 2471a52..d007df8 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -51,7 +51,7 @@ Vagrant.configure("2") do |config| 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-26.box' + lxc_config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-31.box' # Uncomment to test boxes built locally: # lxc_config.vm.box_url = '../boxes/output/lxc-quantal64.box' diff --git a/example/Vagrantfile b/example/Vagrantfile index d978456..3328a57 100644 --- a/example/Vagrantfile +++ b/example/Vagrantfile @@ -16,7 +16,7 @@ Vagrant.require_plugin 'vagrant-lxc' Vagrant.configure("2") do |config| config.vm.box = "quantal64" - config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-26.box' + config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-31.box' # Uncomment if you want to try out a box built locally # config.vm.box_url = '../boxes/output/lxc-quantal64.box' config.vm.hostname = 'lxc-quantal64-example'