21 lines
368 B
Plaintext
21 lines
368 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
|
|
}
|