summaryrefslogtreecommitdiffstats
path: root/vagrant/ansible/roles/node.test/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/ansible/roles/node.test/tasks/main.yml')
-rw-r--r--vagrant/ansible/roles/node.test/tasks/main.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/vagrant/ansible/roles/node.test/tasks/main.yml b/vagrant/ansible/roles/node.test/tasks/main.yml
deleted file mode 100644
index 9002cdf..0000000
--- a/vagrant/ansible/roles/node.test/tasks/main.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-- 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
-
-#- name: Test node reachability
-# # note: `net_ping` module does not work unless we put
-# # `ansible_network_os` into the inventory...
-# command: "ping -c 1 {{ item }}"
-# loop:
-# "{{ gluster_cluster_hosts }}"
-
-# 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 }}"