From cf8ee170b9788d71bba24774b64afbe160d1863b Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Mon, 22 Apr 2013 01:55:42 -0300 Subject: [PATCH] Add an Ubuntu raring box so we can test lxc 0.9 Looks like it is working fine, although there's room for improvement since we can use the output of `lxc-ls --fancy' on 0.9 to get container's ip, but should be enough to close #54 --- development/Vagrantfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/development/Vagrantfile b/development/Vagrantfile index 449a171..adc704c 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -66,6 +66,22 @@ Vagrant.configure("2") do |config| end end + config.vm.define :raring do |raring| + raring.vm.network :private_network, ip: "192.168.50.34" + raring.vm.box = 'raring64' + raring.vm.hostname = 'vbox' + raring.vm.box_url = 'http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-amd64-vagrant-disk1.box' + + raring.vm.provider :virtualbox do |vb| + # Configure VM to use 1.5gb of ram and 2 cpus + vb.customize [ + "modifyvm", :id, + "--memory", '1536', + "--cpus", '2' + ] + end + 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-04-21.box'