2015-08-18 16:57:44 +02:00
|
|
|
function configure_qos_service_plugin {
|
2017-03-07 21:19:33 +00:00
|
|
|
neutron_service_plugin_class_add "qos"
|
2015-08-18 16:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function configure_qos_core_plugin {
|
2017-03-07 21:06:35 +00:00
|
|
|
configure_qos_$NEUTRON_CORE_PLUGIN
|
2015-08-18 16:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|