From 7acaff0dfbd7156490025ba3b383e6c45fc082dd Mon Sep 17 00:00:00 2001 From: Assaf Muller Date: Tue, 13 Oct 2015 16:52:46 -0400 Subject: [PATCH] Add ml2 extension drivers examples DocImpact Change-Id: Idf8fcbd6f47ab91996d843575b66ad749cb9a3e0 --- etc/neutron/plugins/ml2/ml2_conf.ini | 2 +- neutron/plugins/ml2/config.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/etc/neutron/plugins/ml2/ml2_conf.ini b/etc/neutron/plugins/ml2/ml2_conf.ini index 2cef2c6ff..a3f075dc6 100644 --- a/etc/neutron/plugins/ml2/ml2_conf.ini +++ b/etc/neutron/plugins/ml2/ml2_conf.ini @@ -25,7 +25,7 @@ # (ListOpt) Ordered list of extension driver entrypoints # to be loaded from the neutron.ml2.extension_drivers namespace. # extension_drivers = -# Example: extension_drivers = anewextensiondriver +# Example: extension_drivers = port_security,qos # =========== items for MTU selection and advertisement ============= # (IntOpt) Path MTU. The maximum permissible size of an unfragmented diff --git a/neutron/plugins/ml2/config.py b/neutron/plugins/ml2/config.py index a248c1ceb..94a0fda06 100644 --- a/neutron/plugins/ml2/config.py +++ b/neutron/plugins/ml2/config.py @@ -34,7 +34,8 @@ ml2_opts = [ default=[], help=_("An ordered list of extension driver " "entrypoints to be loaded from the " - "neutron.ml2.extension_drivers namespace.")), + "neutron.ml2.extension_drivers namespace. " + "For example: extension_drivers = port_security,qos")), cfg.IntOpt('path_mtu', default=0, help=_('The maximum permissible size of an unfragmented ' 'packet travelling from and to addresses where ' -- 2.45.2