Files
neutron/devstack/lib/qos
Ihar Hrachyshka abd38171ba devstack: switch to new NEUTRON_* variables
Those are generally defined by new lib/neutron code.

Change-Id: I2dd0128267b8a836c392d7ac26ade5bd0f421997
Co-Authored-By: YAMAMOTO Takashi <yamamoto@midokura.com>
2017-03-07 21:06:35 +00:00

21 lines
369 B
Plaintext

function configure_qos_service_plugin {
_neutron_service_plugin_class_add "qos"
}
function configure_qos_core_plugin {
configure_qos_$NEUTRON_CORE_PLUGIN
}
function configure_qos_l2_agent {
plugin_agent_add_l2_agent_extension "qos"
}
function configure_qos {
configure_qos_service_plugin
configure_qos_core_plugin
configure_qos_l2_agent
}