From 174c5c8f629edd475c3442801bb3c56b1cc8b3c7 Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Fri, 29 May 2020 11:40:30 +0530 Subject: Remove a debug block for node connectivity --- vagrant/ansible/roles/node.prep/tasks/main.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/vagrant/ansible/roles/node.prep/tasks/main.yml b/vagrant/ansible/roles/node.prep/tasks/main.yml index 4464bdb..6831e1f 100644 --- a/vagrant/ansible/roles/node.prep/tasks/main.yml +++ b/vagrant/ansible/roles/node.prep/tasks/main.yml @@ -1,23 +1,3 @@ -- name: Check for node connectivity - block: - - name: read list of nodes from file cluster_nodes.yml - include_vars: - file: cluster-vars.yml - - - name: get hostname - command: hostname - register: output - - - name: print hostname - debug: - var: output.stdout - - # this is the way gluster-ansible accesses the nodes - - name: Test ssh to nodes via node address - command: /bin/true - delegate_to: "{{ item }}" - with_items: "{{ gluster_cluster_hosts }}" - - name: Install GlusterFS rpms yum: name: "{{ gluster_rpms }}" -- cgit