Updated from OpenStack Ansible Tests

Change-Id: Iea4fdd508e0f67851e6326f519c8af64d45c8ae4
This commit is contained in:
OpenStack Proposal Bot 2019-06-18 18:16:01 +00:00
parent 07392c2894
commit 72f453e729
1 changed files with 7 additions and 4 deletions

View File

@ -67,7 +67,8 @@
name: "{{ _oslomsg_notify_vhost }}" name: "{{ _oslomsg_notify_vhost }}"
state: "present" state: "present"
when: 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 - name: Apply Notify RabbitMQ vhost policies
rabbitmq_policy: rabbitmq_policy:
@ -78,21 +79,23 @@
vhost: "{{ _oslomsg_notify_vhost }}" vhost: "{{ _oslomsg_notify_vhost }}"
loop: "{{ _oslomsg_notify_policies | default([]) + oslomsg_notify_policies }}" loop: "{{ _oslomsg_notify_policies | default([]) + oslomsg_notify_policies }}"
when: when:
- _oslomsg_notify_vhost != _oslomsg_rpc_vhost - (_oslomsg_rpc_vhost is undefined) or
(_oslomsg_notify_vhost != _oslomsg_rpc_vhost)
- name: Add Notify RabbitMQ user - name: Add Notify RabbitMQ user
rabbitmq_user: rabbitmq_user:
user: "{{ _oslomsg_notify_userid }}" user: "{{ _oslomsg_notify_userid }}"
password: "{{ _oslomsg_notify_password }}" password: "{{ _oslomsg_notify_password }}"
update_password: always
vhost: "{{ _oslomsg_notify_vhost }}" vhost: "{{ _oslomsg_notify_vhost }}"
configure_priv: ".*" configure_priv: ".*"
read_priv: ".*" read_priv: ".*"
write_priv: ".*" write_priv: ".*"
state: "present" state: "present"
force: true
no_log: true no_log: true
when: 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) - name: Setup RPC MQ Service (Qdrouterd)
delegate_to: "{{ _oslomsg_rpc_setup_host }}" delegate_to: "{{ _oslomsg_rpc_setup_host }}"