From a06e4a79a5331952ad31c737fbd3d7d82eaa6eb5 Mon Sep 17 00:00:00 2001 From: Larry Smith Jr Date: Thu, 6 Aug 2015 20:25:37 -0400 Subject: updated tasks based on Debian --- tasks/main.yml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) (limited to 'tasks/main.yml') diff --git a/tasks/main.yml b/tasks/main.yml index e74c1e5..3752d78 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,26 +1,6 @@ ---- # tasks file for ansible-rabbitmq -- name: Add the RabbitMQ public GPG key to the apt repo - apt_key: url=http://www.rabbitmq.com/rabbitmq-signing-key-public.asc state=present - -- name: Add RabbitMQ to the sources list - apt_repository: repo='deb http://www.rabbitmq.com/debian/ testing main' update_cache=no state=present - -- name: Install RabbitMQ server - apt: name={{ item }} update_cache=no force=yes state=installed - with_items: - - rabbitmq-server - -- name: Enable the RabbitMQ Management Console - rabbitmq_plugin: names=rabbitmq_management state=enabled - notify: restart rabbitmq-server - -- name: Ensure that the RabbitMQ service is running - service: name=rabbitmq-server state=started enabled=yes - -- name: check | checking to see if already clustered - stat: path=/etc/rabbitmq/clustered - register: clustered +- include: debian.yml + when: ansible_os_family == "Debian" - include: rabbitmq_clustering.yml when: enable_rabbitmq_clustering and (clustered.stat.exists != True) -- cgit v1.2.3