You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
831 B
26 lines
831 B
---
|
|
|
|
- name: Remove unused config
|
|
file: path=/etc/rabbitmq/rabbitmq.config state=absent
|
|
when: rabbitmq_conf == 'rabbit.conf'
|
|
notify: restart rabbitmq-server
|
|
tags: rabbit
|
|
|
|
# Create a self signed cert. This is needed even if a cert is later obtained with dehydrated as
|
|
# turnserver must be started before that
|
|
- import_tasks: ../includes/create_selfsigned_cert.yml
|
|
vars:
|
|
- cert_path: /etc/rabbitmq/ssl/cert.pem
|
|
- cert_key_path: /etc/rabbitmq/ssl/key.pem
|
|
- cert_user: rabbitmq
|
|
tags: rabbitmq
|
|
|
|
- name: Deploy configuration
|
|
template: src={{ rabbitmq_conf }}.j2 dest=/etc/rabbitmq/{{ rabbitmq_conf }}
|
|
notify: restart rabbitmq-server
|
|
tags: rabbitmq
|
|
|
|
- name: Deploy plugins to enable
|
|
template: src=enabled_plugins.j2 dest=/etc/rabbitmq/enabled_plugins
|
|
notify: restart rabbitmq-server
|
|
tags: rabbitmq
|
|
|