aboutsummaryrefslogtreecommitdiffstats
path: root/resources/template/ssh.cfg.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/ssh.cfg.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/ssh.cfg.j2')
-rw-r--r--resources/template/ssh.cfg.j214
1 files changed, 0 insertions, 14 deletions
diff --git a/resources/template/ssh.cfg.j2 b/resources/template/ssh.cfg.j2
deleted file mode 100644
index 2fe049e2..00000000
--- a/resources/template/ssh.cfg.j2
+++ /dev/null
@@ -1,14 +0,0 @@
-# Connect to target node through jump host
-#
-# OpenSSH 7.3:
-# ProxyJump jumphost
-# before OpenSSH 7.3
-# ProxyCommand ssh -o 'ForwardAgent yes' jumphost 'ssh-add && nc %h %p'
-
-{% for (name, host) in hosts_meta.items() %}
-Host {{ name }}
- HostName {{ host.ansible_ssh_host }}
- User root
- ProxyCommand ssh -o 'ForwardAgent yes' fuel-master 'ssh-add && nc %h %p'
-
-{% endfor %}