]> git.immae.eu Git - github/fretlink/ansible-rabbitmq.git/blobdiff - playbook.yml
Updated gitignore
[github/fretlink/ansible-rabbitmq.git] / playbook.yml
diff --git a/playbook.yml b/playbook.yml
deleted file mode 100644 (file)
index 498c829..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
----
-- hosts: all
-  become: true
-  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:
-    - rabbitmq_config_ha: true
-    - rabbitmq_enable_clustering: true
-    - pri_domain_name: 'test.vagrant.local'
-    - rabbitmq_master: 'node0'
-  roles:
-    - role: ansible-rabbitmq
-  tasks: