From 397a5177bd2a87d7c70fd808209646ce5dc9bc9b Mon Sep 17 00:00:00 2001 From: Dmitrii Shcherbakov Date: Thu, 11 Jun 2020 16:25:07 +0300 Subject: [PATCH] Fix a typo in the OVN manual install guide Using a colon is not correct in this context and results in service startup errors like this: AttributeError: module 'neutron.services.ovn_l3' has no attribute 'plugin:OVNL3RouterPlugin' It could be that this hasn't been modified after copying from setup.cfg where a colon is used correctly. Moreover, it would be better to use entrypoint names, so this change changes that for the L3 service plugin as well as the core plugin. Change-Id: Id51704a50f42b65049e535aaeb9dc6847a3737bb --- doc/source/install/ovn/manual_install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/install/ovn/manual_install.rst b/doc/source/install/ovn/manual_install.rst index 20f0384274b..9a0ef2ff4fd 100644 --- a/doc/source/install/ovn/manual_install.rst +++ b/doc/source/install/ovn/manual_install.rst @@ -138,7 +138,7 @@ primary node. See the :doc:`/ovn/faq/index` for more information. [DEFAULT] ... - core_plugin = neutron.plugins.ml2.plugin.Ml2Plugin + core_plugin = ml2 * Enable the OVN layer-3 service. @@ -146,7 +146,7 @@ primary node. See the :doc:`/ovn/faq/index` for more information. [DEFAULT] ... - service_plugins = neutron.services.ovn_l3.plugin:OVNL3RouterPlugin + service_plugins = ovn-router #. Configure the ML2 plug-in. Edit the ``/etc/neutron/plugins/ml2/ml2_conf.ini`` file: