Updated from OpenStack Ansible Tests

Change-Id: I55dd2ba009b8962ca0ea3e96fc4ea5a35f707286
This commit is contained in:
OpenStack Proposal Bot 2019-06-18 18:15:19 +00:00
parent 297b4e4ecd
commit 14891358c8
1 changed files with 7 additions and 4 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,21 +79,23 @@
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:
user: "{{ _oslomsg_notify_userid }}"
password: "{{ _oslomsg_notify_password }}"
update_password: always
vhost: "{{ _oslomsg_notify_vhost }}"
configure_priv: ".*"
read_priv: ".*"
write_priv: ".*"
state: "present"
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 }}"