From eb2a678908ae43f19f5c6a74da74db813ea9d93a Mon Sep 17 00:00:00 2001 From: Simon Dodsley Date: Wed, 2 Mar 2016 17:56:48 -0500 Subject: [PATCH] Remove comma from enabled_backends As there is no way to correctly pick up existing enabled_backends from Fuel we have no need to add the backends parameters with a comma to the enabled_backends that is being set. If you have 2 Cinder plugins enabled then the last one to run overwrite enabled_backends anyway. This needs to be investigated by Mirantis Change-Id: Ifeb72c2bad5285ef11d524c078dc62cebbb758f8 --- .../modules/plugin_purestorage_cinder/manifests/controller.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_scripts/puppet/modules/plugin_purestorage_cinder/manifests/controller.pp b/deployment_scripts/puppet/modules/plugin_purestorage_cinder/manifests/controller.pp index a2896a8..c1bded8 100755 --- a/deployment_scripts/puppet/modules/plugin_purestorage_cinder/manifests/controller.pp +++ b/deployment_scripts/puppet/modules/plugin_purestorage_cinder/manifests/controller.pp @@ -40,7 +40,7 @@ class plugin_purestorage_cinder::controller ( if $plugin_settings['multibackend'] { $section = $backend_name cinder_config { - "DEFAULT/enabled_backends": value => "${backend_name},${backends}"; + "DEFAULT/enabled_backends": value => "${backend_name}"; } } else { $section = 'DEFAULT'