diff options
Diffstat (limited to 'resources/roles/qtip-workspace/files/copy/templates')
-rw-r--r-- | resources/roles/qtip-workspace/files/copy/templates/hosts | 2 | ||||
-rw-r--r-- | resources/roles/qtip-workspace/files/copy/templates/ssh.cfg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/roles/qtip-workspace/files/copy/templates/hosts b/resources/roles/qtip-workspace/files/copy/templates/hosts index 27c8d1d6..6779d6f4 100644 --- a/resources/roles/qtip-workspace/files/copy/templates/hosts +++ b/resources/roles/qtip-workspace/files/copy/templates/hosts @@ -1,7 +1,7 @@ localhost ansible_connection=local [{{ installer_master_group[installer] }}] -{{ installer_master }} +{{ installer_master_host }} [fuel-groups:children] {% for group in hosts|sort %} diff --git a/resources/roles/qtip-workspace/files/copy/templates/ssh.cfg b/resources/roles/qtip-workspace/files/copy/templates/ssh.cfg index d6a266ba..6c8968d3 100644 --- a/resources/roles/qtip-workspace/files/copy/templates/ssh.cfg +++ b/resources/roles/qtip-workspace/files/copy/templates/ssh.cfg @@ -9,6 +9,6 @@ Host {{ name }} HostName {{ host.ansible_ssh_host }} User root - ProxyCommand ssh -o 'ForwardAgent yes' {{ installer_master }} 'ssh-add && nc %h %p' + ProxyCommand ssh -o 'ForwardAgent yes' {{ installer_master_host }} 'ssh-add && nc %h %p' {% endfor %} |