commit | 7d6e77baff9b9fa68c071cc2652bc9a491fccaac | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Wed Mar 01 09:29:48 2017 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Wed Mar 01 09:29:48 2017 +0000 |
tree | 840d612774a9c3960d91045f4f6566851bd0a00d | |
parent | 2977d9aef56fecbb1df5e81f7f2681e7caa24c25 [diff] | |
parent | 84e45c91434c3c7e6796f9a201fd9b0fb8f7adcd [diff] |
Merge "lib/neutron: Fix an extra comma in service_plugins"
diff --git a/lib/neutron b/lib/neutron index 7d42755..f277062 100644 --- a/lib/neutron +++ b/lib/neutron
@@ -510,7 +510,10 @@ local plugins="" plugins=$(iniget $NEUTRON_CONF DEFAULT service_plugins) - plugins+=",${service_plugin_class}" + if [ $plugins ]; then + plugins+="," + fi + plugins+="${service_plugin_class}" iniset $NEUTRON_CONF DEFAULT service_plugins $plugins }