Use stevedore aliases for interface_driver configuration

interface_driver configuration was updated to use stevedore aliases.
This patch is to change devstack scripts to now use the aliases
instead of the previous class imports.

Change-Id: Ida10765f89c07205837e46f8cb445391f0e15373
Closes-Bug: #1504536
This commit is contained in:
ZhongShengping 2016-12-21 15:03:23 +08:00
parent 6a8a9f7ba4
commit e9c7d4543a
1 changed files with 2 additions and 2 deletions

View File

@ -23,9 +23,9 @@ metadata_workers = {{ openstack_service_workers }}
metadata_proxy_socket = /var/lib/neutron/kolla/metadata_proxy
{% if neutron_plugin_agent == "openvswitch" %}
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
interface_driver = openvswitch
{% elif neutron_plugin_agent == "linuxbridge" %}
interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
interface_driver = linuxbridge
{% endif %}
{% if enable_nova_fake | bool %}