From 5103948d4020419e75cc015a3ba440322f3e6c8c Mon Sep 17 00:00:00 2001 From: Yanis Guenane Date: Mon, 3 Feb 2014 14:54:01 -0500 Subject: [PATCH] Fix wrong glance $rabbit_host assignment In `glance-api.conf`, the value `$rabbit_host` has a wrong value due to a wrong assignment in the `params.pp` file. This commit bind the `$rabbit_host` to its proper value. Close #146 Close enovance/openstack-puppet-ci#36 --- manifests/image.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/image.pp b/manifests/image.pp index a61d0e92..aa7d1cb4 100644 --- a/manifests/image.pp +++ b/manifests/image.pp @@ -70,7 +70,7 @@ class cloud::image( $ks_glance_registry_internal_port = $os_params::ks_glance_registry_internal_port, $ks_glance_password = $os_params::ks_glance_password, $rabbit_password = $os_params::rabbit_password, - $rabbit_host = $os_params::rabbit_hosts[0], + $rabbit_host = $os_params::rabbit_host, $api_eth = $os_params::api_eth, $openstack_vip = $os_params::vip_public_ip, $rbd_store_pool = $os_params::glance_rbd_pool,