From f36f2edd9429200fbd18eeecfbba4b5fe891f26d Mon Sep 17 00:00:00 2001 From: Larry Smith Jr Date: Sat, 20 May 2017 21:18:56 -0400 Subject: Updated example playbook as part of code cleanup #10 Signed-off-by: Larry Smith Jr --- playbook.yml | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/playbook.yml b/playbook.yml index 1968320..4936577 100644 --- a/playbook.yml +++ b/playbook.yml @@ -1,25 +1,12 @@ --- -- hosts: all - become: true +- hosts: rabbitmq_cluster vars: - pri_domain_name: 'test.vagrant.local' - roles: - tasks: - - name: updating /etc/hosts - lineinfile: - dest: /etc/hosts - regexp: "^{{ hostvars[item].ansible_ssh_host }} {{ item }} {{ item }}.{{ pri_domain_name }}" - line: "{{ hostvars[item].ansible_ssh_host }} {{ item }} {{ item }}.{{ pri_domain_name }}" - state: present - with_items: "{{ groups['all'] }}" - -- hosts: all - become: true - vars: - pri_domain_name: 'test.vagrant.local' - rabbitmq_config_ha: true + etc_hosts_add_all_hosts: true + etc_hosts_pri_dns_name: '{{ pri_domain_name }}' + pri_domain_name: 'vagrant.local' rabbitmq_enable_clustering: true - rabbitmq_master: 'node0' + rabbitmq_master: "{{ groups['rabbitmq_cluster'][0] }}" roles: + - role: ansible-etc-hosts - role: ansible-rabbitmq tasks: -- cgit v1.2.3