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
This commit is contained in:
Simon Dodsley 2016-03-02 17:56:48 -05:00
parent 6d08960104
commit eb2a678908
1 changed files with 1 additions and 1 deletions

View File

@ -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'