aboutsummaryrefslogtreecommitdiffstats
path: root/resources/ansible_roles/qtip-workspace/files/template/templates/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'resources/ansible_roles/qtip-workspace/files/template/templates/hosts')
-rw-r--r--resources/ansible_roles/qtip-workspace/files/template/templates/hosts25
1 files changed, 0 insertions, 25 deletions
diff --git a/resources/ansible_roles/qtip-workspace/files/template/templates/hosts b/resources/ansible_roles/qtip-workspace/files/template/templates/hosts
deleted file mode 100644
index 34e4aa92..00000000
--- a/resources/ansible_roles/qtip-workspace/files/template/templates/hosts
+++ /dev/null
@@ -1,25 +0,0 @@
-{% raw %}
-localhost ansible_connection=local
-
-[{{ installer_master_group[installer] }}]
-{{ installer_master_host }}
-
-[SUT:children] # system under test
-compute
-
-[node-groups:children]
-{% for group in hosts|sort %}
-{{ group }}
-{% endfor %}
-
-[node-groups:vars]
-ansible_ssh_common_args=-F ./ssh.cfg
-
-{% for group in hosts|sort %}
-[{{ group }}]
-{% for host in hosts[group]|sort %}
-{{ host }}
-{% endfor %}
-
-{% endfor %}
-{% endraw %}