From e504ce3e8dbb748005ca3b64e8cb5de2d07290cb Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Fri, 12 Jul 2013 14:25:24 -0300 Subject: [PATCH] New boxes! --- README.md | 3 +-- development/Vagrantfile | 2 +- example/Vagrantfile | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d0ee68c..df881a1 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ vagrant plugin install vagrant-lxc After installing, add a [base box](#base-boxes) using any name you want, for example: ``` -vagrant box add quantal64 http://dl.dropbox.com/u/13510779/lxc-quantal-amd64-2013-07-08.box +vagrant box add quantal64 http://dl.dropbox.com/u/13510779/lxc-quantal-amd64-2013-07-12.box ``` Then create a Vagrantfile that looks like the following, changing the box name @@ -99,7 +99,6 @@ For other configuration options, please check [lxc.conf manpages](http://manpage ### Base boxes - Please check [the wiki](https://github.com/fgrehm/vagrant-lxc/wiki/Base-boxes) for a list of [pre built](https://github.com/fgrehm/vagrant-lxc/wiki/Base-boxes#available-boxes) base boxes and information on [how to build your own](https://github.com/fgrehm/vagrant-lxc/wiki/Base-boxes#building-your-own). diff --git a/development/Vagrantfile b/development/Vagrantfile index 3f6798b..655d5bc 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -3,7 +3,7 @@ require 'pathname' BASE_URL = 'http://dl.dropbox.com/u/13510779' -LAST_RELEASE_DATE = '2013-07-08' +LAST_RELEASE_DATE = '2013-07-12' LOCAL_BOXES_PATH = Pathname('../boxes/output').expand_path def lxc_box_url(release_name) file_name = "lxc-#{release_name}-amd64-#{LAST_RELEASE_DATE}.box" diff --git a/example/Vagrantfile b/example/Vagrantfile index a684cd7..53da8e9 100644 --- a/example/Vagrantfile +++ b/example/Vagrantfile @@ -32,9 +32,9 @@ echo "Hi there I'm a shell script used for provisioning" releases.each do |release| config.vm.define(release) do |lxc_config| lxc_config.vm.box = "#{release}64" - lxc_config.vm.box_url = "http://dl.dropbox.com/u/13510779/lxc-#{release}-amd64-2013-07-08.box" + lxc_config.vm.box_url = "http://dl.dropbox.com/u/13510779/lxc-#{release}-amd64-2013-07-12.box" # Uncomment if you want to try out a box built locally - # lxc_config.vm.box_url = "../boxes/output/lxc-#{release}-amd64-2013-07-08.box" + # lxc_config.vm.box_url = "../boxes/output/lxc-#{release}-amd64-2013-07-12.box" lxc_config.vm.network :forwarded_port, guest: 80, host: (port += 1) lxc_config.vm.hostname = "lxc-#{release}64-example" end