File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -294,6 +294,7 @@ source $TOP_DIR/lib/neutron_plugins/services/l3
294294source $TOP_DIR /lib/neutron_plugins/services/placement
295295source $TOP_DIR /lib/neutron_plugins/services/trunk
296296source $TOP_DIR /lib/neutron_plugins/services/qos
297+ source $TOP_DIR /lib/neutron_plugins/services/segments
297298
298299# Use security group or not
299300if has_neutron_plugin_security_group; then
@@ -416,6 +417,10 @@ function configure_neutron {
416417 configure_l3_agent_extension_gateway_ip_qos
417418 fi
418419 fi
420+ if is_service_enabled neutron-segments; then
421+ configure_placement_neutron
422+ configure_segments_extension
423+ fi
419424
420425 # Finally configure Neutron server and core plugin
421426 if is_service_enabled q-agt neutron-agent q-svc neutron-api; then
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ function configure_segments_service_plugin {
4+ neutron_service_plugin_class_add segments
5+ }
6+
7+ function configure_segments_extension {
8+ configure_segments_service_plugin
9+ }
10+
You can’t perform that action at this time.
0 commit comments