ovsdb Metadata
Add neutron-ovs-agent ovsdb information (native vs vsctl) Change-Id: I72bbc80485d95d8a4be3a1d0c185cee4cbee6d43
This commit is contained in:
parent
5ea5948aaf
commit
74a1db4cde
@ -10,4 +10,17 @@
|
||||
set_fact:
|
||||
openstack_ovs_version: "{{ ovs_version.stdout }}"
|
||||
|
||||
- name: Get neutron ovs agent ovsdb setting
|
||||
shell: crudini --get /etc/neutron/plugins/ml2/openvswitch_agent.ini ovs ovsdb_interface
|
||||
register: ovsdb_status
|
||||
ignore_errors: true
|
||||
|
||||
- name: Set Neutron OVS ovsdb fact
|
||||
set_fact:
|
||||
openstack_neutron_ovsdb: "{{ ovsdb_status.stdout }}"
|
||||
when: (ovsdb_status.stdout.find('native') != -1 or ovsdb_status.stdout.find('vsctl') != -1)
|
||||
|
||||
- name: Set Neutron OVS ovsdb fact
|
||||
set_fact:
|
||||
openstack_neutron_ovsdb: "vsctl"
|
||||
when: (ovsdb_status.stdout.find('native') == -1 and ovsdb_status.stdout.find('vsctl') == -1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user