Add squeeze box

Closes #63
This commit is contained in:
Fabio Rehm 2013-05-05 11:03:43 -03:00
parent f07179e582
commit cb665ecdd5
2 changed files with 9 additions and 3 deletions

View file

@ -68,8 +68,9 @@ can use the [same Vagrant VirtualBox machine I use for development](#using-virtu
| [lxc-raring-amd64-2013-04-21.box](http://dl.dropbox.com/u/13510779/lxc-raring-amd64-2013-04-21.box) | Ubuntu 13.04 Raring x86_64 (Puppet 3.1.1) |
| [lxc-quantal-amd64-2013-04-21.box](http://dl.dropbox.com/u/13510779/lxc-quantal-amd64-2013-04-21.box) | Ubuntu 12.10 Quantal x86_64 (Puppet 3.1.1 & Chef 11.4.0) |
| [lxc-precise-amd64-2013-04-21.box](http://dl.dropbox.com/u/13510779/lxc-precise-amd64-2013-04-21.box) | Ubuntu 12.04 Precise x86_64 (Puppet 3.1.1 & Chef 11.4.0) |
| *SOON* | Debian Wheezy |
| *SOON* | Debian Sid |
| *[SOON](tasks/boxes.rake#157)* | Debian Squeeze |
| *[SOON](tasks/boxes.rake#162)* | Debian Wheezy |
| *[SOON](tasks/boxes.rake#167)* | Debian Sid |
*Please note that I'm currently using only the quantal x86_64 on a daily basis,
and I've only done some basic testing with the others*

View file

@ -151,13 +151,18 @@ namespace :boxes do
end
end
# FIXME: Find out how to install chef on debian boxes
namespace :debian do
namespace :build do
desc 'Build an Debian Squeeze 64 bits box'
BuildDebianBoxTask.
new(:squeeze64,
:squeeze, 'amd64', chef: false, puppet: puppet, babushka: babushka)
desc 'Build an Debian Wheezy 64 bits box'
BuildDebianBoxTask.
new(:wheezy64,
:wheezy, 'amd64', chef: chef, puppet: puppet, babushka: babushka)
:wheezy, 'amd64', chef: false, puppet: puppet, babushka: babushka)
desc 'Build an Debian Sid/unstable 64 bits box'
BuildDebianBoxTask.