From: Larry Smith Jr Date: Sun, 21 May 2017 01:18:56 +0000 (-0400) Subject: Updated example playbook as part of code cleanup #10 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=f36f2edd9429200fbd18eeecfbba4b5fe891f26d;p=github%2Ffretlink%2Fansible-rabbitmq.git Updated example playbook as part of code cleanup #10 Signed-off-by: Larry Smith Jr --- 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: