Ansible roles
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.

18 lines
492 B

---
- name: Remove unused config
file: path=/etc/rabbitmq/rabbitmq.config state=absent
when: rabbitmq_conf == 'rabbit.conf'
notify: restart rabbitmq-server
tags: rabbit
- 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