4edf94041f
In [1] we finally got rid of the unfinished lib/neutron module and kept only lib/neutron-legacy. It's renamed to lib/neutron now and it's the only neutron related module in Devstack. So this patch removes left over todo comments about things to do when migration to the new lib/neutron module will be finished. [1] https://review.opendev.org/c/openstack/devstack/+/865014 Change-Id: Icd7030d36a2462263c9379e02c756d23f6ff6440
13 lines
621 B
Plaintext
13 lines
621 B
Plaintext
function configure_ml2_extension_drivers {
|
|
if is_neutron_legacy_enabled; then
|
|
# NOTE(yamamoto): This overwrites what Devstack's neutron module set,
|
|
# with the latest set of drivers.
|
|
# While we modifies Q_ML2_PLUGIN_EXT_DRIVERS (via
|
|
# neutron_ml2_extension_driver_add calls) in the post-config phase,
|
|
# lib/neutron-legcay populates this in "configure_neutron", which is
|
|
# before post-config.
|
|
# REVISIT(yamamoto): Probably this ought to be in lib/neutron-legcay
|
|
iniset /$NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers ${Q_ML2_PLUGIN_EXT_DRIVERS}
|
|
fi
|
|
}
|