Updated from OpenStack Ansible Tests

Change-Id: I02fedc636e19d5bef5ac8e6ce87a757535ae14ef
This commit is contained in:
OpenStack Proposal Bot 2019-06-11 22:17:25 +00:00
parent d9e345b8d2
commit 9fe530073d
1 changed files with 6 additions and 3 deletions

View File

@ -67,7 +67,8 @@
name: "{{ _oslomsg_notify_vhost }}"
state: "present"
when:
- _oslomsg_notify_vhost != _oslomsg_rpc_vhost
- (_oslomsg_rpc_vhost is undefined) or
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
- name: Apply Notify RabbitMQ vhost policies
rabbitmq_policy:
@ -78,7 +79,8 @@
vhost: "{{ _oslomsg_notify_vhost }}"
loop: "{{ _oslomsg_notify_policies | default([]) + oslomsg_notify_policies }}"
when:
- _oslomsg_notify_vhost != _oslomsg_rpc_vhost
- (_oslomsg_rpc_vhost is undefined) or
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
- name: Add Notify RabbitMQ user
rabbitmq_user:
@ -92,7 +94,8 @@
force: true
no_log: true
when:
- _oslomsg_notify_userid != _oslomsg_rpc_userid
- (_oslomsg_rpc_userid is undefined) or
(_oslomsg_notify_userid != _oslomsg_rpc_userid)
- name: Setup RPC MQ Service (Qdrouterd)
delegate_to: "{{ _oslomsg_rpc_setup_host }}"