From 4fecb633ebf41dbe027cec3594facb483699458a Mon Sep 17 00:00:00 2001 From: nitishkrishna Date: Thu, 7 Jul 2016 12:25:14 -0700 Subject: [PATCH] Closes-Bug: #1591333 - Heat Plugin dirs doesn't appear with single quotes Changed to double quotes to take python_dist variable Change-Id: Id497a9c99d5ad167020cca27d874eff5b64dd6d8 --- .../modules/contrail/manifests/profile/openstack/heat.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrail/environment/modules/contrail/manifests/profile/openstack/heat.pp b/contrail/environment/modules/contrail/manifests/profile/openstack/heat.pp index f24e1f63..9f215388 100644 --- a/contrail/environment/modules/contrail/manifests/profile/openstack/heat.pp +++ b/contrail/environment/modules/contrail/manifests/profile/openstack/heat.pp @@ -69,7 +69,7 @@ $contrail_api_server = $::contrail::params::config_ip_to_use heat_config { - 'DEFAULT/plugin_dirs': value => '${::python_dist}/vnc_api/gen/heat/resources,${::python_dist}/contrail_heat/resources'; + 'DEFAULT/plugin_dirs': value => "${::python_dist}/vnc_api/gen/heat/resources,${::python_dist}/contrail_heat/resources"; 'clients_contrail/user': value => 'admin'; 'clients_contrail/password': value => 'contrail123'; 'clients_contrail/tenent': value => 'admin';