aboutsummaryrefslogtreecommitdiffstats
path: root/resources/ansible_roles/qtip-workspace/files/template/hosts
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-05-16 08:29:20 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-16 08:29:20 +0000
commitb5a115179cc75be6ca853d740dfce393fc8c1fd2 (patch)
tree7f4dda28214d72e49eadd364673e6fa11164623a /resources/ansible_roles/qtip-workspace/files/template/hosts
parenteeb3cad4c3bf94b7b5f7da6cde190364bb10fca6 (diff)
parent704d1340fb09b5ffad0282bc143d41e2afebd0bf (diff)
Merge "Add support for manually installed (not using installer) OPNFV pod"
Diffstat (limited to 'resources/ansible_roles/qtip-workspace/files/template/hosts')
-rw-r--r--resources/ansible_roles/qtip-workspace/files/template/hosts9
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/ansible_roles/qtip-workspace/files/template/hosts b/resources/ansible_roles/qtip-workspace/files/template/hosts
index b8b4bbe6..b8b256a9 100644
--- a/resources/ansible_roles/qtip-workspace/files/template/hosts
+++ b/resources/ansible_roles/qtip-workspace/files/template/hosts
@@ -1,4 +1,13 @@
localhost ansible_connection=local
+{% if installer != 'manual' %}
[{{ installer_master_group[installer] }}]
{{ installer_master_host }}
+{% else %}
+[SUT]
+# Add hosts in system under test, example::
+#
+# host-1 ansible_host=192.168.10.1 ansible_host=22 ansile_user=root
+#
+# See http://docs.ansible.com/ansible/intro_inventory.html for details
+{% endif %} \ No newline at end of file