aboutsummaryrefslogtreecommitdiffstats
path: root/resources/template/hosts.j2
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-04-20 18:08:42 +0800
committerYujun Zhang <zhang.yujunz@zte.com.cn>2017-04-20 19:55:00 +0800
commita6d8313b300453c15e7c2438979db6253b6e6819 (patch)
tree1dd44016c906bab05edd6ca09e5b6e63a5d74210 /resources/template/hosts.j2
parenta1325130fdbbab0c58a08d636b8c0419504020a8 (diff)
Fix workspace creator
- handle relative path in workspace - handle differences between installers - create working directories Change-Id: I5fbe66c1218c29db0fafd87085a6cf5c15a91dc5 Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'resources/template/hosts.j2')
-rw-r--r--resources/template/hosts.j218
1 files changed, 0 insertions, 18 deletions
diff --git a/resources/template/hosts.j2 b/resources/template/hosts.j2
deleted file mode 100644
index 2ebf3c8b..00000000
--- a/resources/template/hosts.j2
+++ /dev/null
@@ -1,18 +0,0 @@
-fuel-master
-localhost ansible_connection=local
-
-[fuel-groups:children]
-{% for group in hosts|sort %}
-{{ group }}
-{% endfor %}
-
-[fuel-groups:vars]
-ansible_ssh_common_args=-F ./ssh.cfg
-
-{% for group in hosts|sort %}
-[{{ group }}]
-{% for host in hosts[group]|sort %}
-{{ host }}
-{% endfor %}
-
-{% endfor %}