We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2977d9a + 84e45c9 commit 7d6e77bCopy full SHA for 7d6e77b
1 file changed
lib/neutron
@@ -510,7 +510,10 @@ function neutron_service_plugin_class_add_new {
510
local plugins=""
511
512
plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins)
513
- plugins+=",${service_plugin_class}"
+ if [ $plugins ]; then
514
+ plugins+=","
515
+ fi
516
+ plugins+="${service_plugin_class}"
517
iniset $NEUTRON_CONF DEFAULT service_plugins $plugins
518
}
519
0 commit comments