Add missing function neutron_plugin_configure_service to

brocade specific file

Closes bug: 1304701

Change-Id: I18f90865a015b9dc6db4123d46492140ca67a38f
This commit is contained in:
Shiv Haris 2014-04-08 15:19:12 -07:00
parent c139a70fe2
commit 815ef98fa2

View File

@ -24,6 +24,30 @@ function neutron_plugin_configure_common {
Q_PLUGIN_CLASS="neutron.plugins.brocade.NeutronPlugin.BrocadePluginV2"
}
function neutron_plugin_configure_service {
if [[ "$BROCADE_SWITCH_OS_VERSION" != "" ]]; then
iniset /$Q_PLUGIN_CONF_FILE switch osversion $BROCADE_SWITCH_OS_VERSION
fi
if [[ "$BROCADE_SWITCH_OS_TYPE" != "" ]]; then
iniset /$Q_PLUGIN_CONF_FILE switch ostype $BROCADE_SWITCH_OS_TYPE
fi
if [[ "$BROCADE_SWITCH_PASSWORD" != "" ]]; then
iniset /$Q_PLUGIN_CONF_FILE switch password $BROCADE_SWITCH_PASSWORD
fi
if [[ "$BROCADE_SWITCH_USERNAME" != "" ]]; then
iniset /$Q_PLUGIN_CONF_FILE switch username $BROCADE_SWITCH_USERNAME
fi
if [[ "$BROCADE_SWITCH_IPADDR" != "" ]]; then
iniset /$Q_PLUGIN_CONF_FILE switch address $BROCADE_SWITCH_IPADDR
fi
}
function neutron_plugin_configure_debug_command {
iniset $NEUTRON_TEST_CONFIG_FILE DEFAULT external_network_bridge
}