updated packages and networking

This commit is contained in:
Matt Ray
2012-12-03 16:15:57 -06:00
parent 66e65973ef
commit 9722b90dbb

View File

@@ -1,9 +1,26 @@
name "lxc"
description "Use lxc for the hypervisor"
run_list(
"recipe[lxc]"
)
override_attributes(
"nova" => {
"libvirt" => {
"virt_type" => "lxc"
}
},
"lxc" => {
"packages" => ['lxc', 'libvirt-bin'],
"addr" => '10.0.98.1',
"network" => '10.0.98.0/24',
"dhcp_range" => '10.0.98.2,10.0.98.254',
"containers" => {
"example" => {
"template" => "ubuntu"
}
}
}
)