Move vmware_nsx/neutron/services to vmware_nsx/services

This is part of new vmware_nsx directory structure proposed in
https://goo.gl/GdWXyH.

Change-Id: I9207851bd1db3c005efa6880ca717058fde7707d
This commit is contained in:
Shih-Hao Li 2015-09-14 16:59:23 -07:00
parent 7203f2c671
commit 128996f3f9
9 changed files with 6 additions and 6 deletions

View File

@ -227,7 +227,7 @@
# Specify the class path for the Layer 2 gateway backend driver(i.e. NSXv3/NSX-V).
# This field will be used when a L2 Gateway service plugin is configured.
# nsx_l2gw_driver = vmware_nsx.neutron.services.l2gateway.nsx_v3_driver.NsxV3Driver
# nsx_l2gw_driver = vmware_nsx.services.l2gateway.nsx_v3_driver.NsxV3Driver
[nsx_sync]
# Interval in seconds between runs of the status synchronization task.

View File

@ -32,8 +32,8 @@ neutron.db.alembic_migrations =
neutron.core_plugins =
vmware = vmware_nsx.neutron.plugins.vmware.plugin:NsxMhPlugin
neutron.service_plugins =
vmware_nsx_l2gw = vmware_nsx.neutron.services.l2gateway.plugin:NsxL2GatewayPlugin
vmware_nsx_qos = vmware_nsx.neutron.services.qos.plugin:NsxQosPlugin
vmware_nsx_l2gw = vmware_nsx.services.l2gateway.plugin:NsxL2GatewayPlugin
vmware_nsx_qos = vmware_nsx.services.qos.plugin:NsxQosPlugin
vmware_nsx.neutron.nsxv.router_type_drivers =
shared = vmware_nsx.neutron.plugins.vmware.plugins.nsx_v_drivers.shared_router_driver:RouterSharedDriver
distributed = vmware_nsx.neutron.plugins.vmware.plugins.nsx_v_drivers.distributed_router_driver:RouterDistributedDriver

View File

@ -19,14 +19,14 @@ from neutron.tests import base
from networking_l2gw.tests.unit.db import test_l2gw_db
from vmware_nsx.neutron.services.l2gateway import nsx_v3_driver
from vmware_nsx.neutron.services.l2gateway import plugin as l2gw_plugin
from vmware_nsx.services.l2gateway import nsx_v3_driver
from vmware_nsx.services.l2gateway import plugin as l2gw_plugin
from oslo_config import cfg
from oslo_utils import uuidutils
NSX_V3_DRIVER_CLASS_PATH = ('vmware_nsx.neutron.services.l2gateway.'
NSX_V3_DRIVER_CLASS_PATH = ('vmware_nsx.services.l2gateway.'
'nsx_v3_driver.NsxV3Driver')