From 2603a748ef30daebf78a2183a85528a546f815d3 Mon Sep 17 00:00:00 2001 From: Matthew Black Date: Mon, 9 Sep 2013 10:51:34 -0400 Subject: [PATCH] Added missing param to neutron and cinder classes The param rabbit_hosts is not passed from the openstack::compute class to openstack::neutron and openstack::cinder::storage. Change-Id: Ic93f83bb5435165e737e205b3469ca1a1a6936d6 --- manifests/compute.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/compute.pp b/manifests/compute.pp index 20142c3..5d4bcdb 100644 --- a/manifests/compute.pp +++ b/manifests/compute.pp @@ -216,6 +216,7 @@ class openstack::compute ( ovs_local_ip => $ovs_local_ip_real, # Rabbit rabbit_host => $rabbit_host, + rabbit_hosts => $rabbit_hosts, rabbit_user => $rabbit_user, rabbit_password => $rabbit_password, # Neutron OVS @@ -267,6 +268,7 @@ class openstack::compute ( rabbit_password => $rabbit_password, rabbit_userid => $rabbit_user, rabbit_host => $rabbit_host, + rabbit_hosts => $rabbit_hosts, rabbit_virtual_host => $rabbit_virtual_host, volume_group => $volume_group, iscsi_ip_address => $iscsi_ip_address,