mirror of
https://github.com/rocky-linux/ansible-role-rabbitmq.git
synced 2024-12-04 18:36:26 +00:00
fixes
This commit is contained in:
parent
9a99b6ae63
commit
b9f20e7991
@ -5,6 +5,12 @@
|
|||||||
name: rabbitmq-server
|
name: rabbitmq-server
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: Enable SELinux boolean
|
||||||
|
ansible.posix.seboolean:
|
||||||
|
name: nis_enabled
|
||||||
|
persistent: true
|
||||||
|
state: true
|
||||||
|
|
||||||
- name: Deploy RabbitMQ configuration
|
- name: Deploy RabbitMQ configuration
|
||||||
template:
|
template:
|
||||||
src: "etc/rabbitmq/{{ item }}.j2"
|
src: "etc/rabbitmq/{{ item }}.j2"
|
||||||
@ -46,7 +52,7 @@
|
|||||||
|
|
||||||
# We are doing it the command line way
|
# We are doing it the command line way
|
||||||
- name: Enable RabbitMQ Plugins
|
- name: Enable RabbitMQ Plugins
|
||||||
shell: "set -o pipefail && rabbitmq-plugins {{ rabbitmq_plugins | join(' ') }}"
|
shell: "set -o pipefail && rabbitmq-plugins enable {{ rabbitmq_plugins | join(' ') }}"
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Open applicable firewall rules
|
- name: Open applicable firewall rules
|
||||||
|
Loading…
Reference in New Issue
Block a user