ソースを参照

only add hostname if external_ip is defined

systemd-xsession
コミット
8c82dbf3e4
1個のファイルの変更2行の追加0行の削除
  1. +2
    -0
      templates/ssh.config.j2

+ 2
- 0
templates/ssh.config.j2 ファイルの表示

@@ -1,4 +1,6 @@
{% for hostname in groups.vms %}
Host {{hostname}}
{% if 'external_ip' in hostvars[hostname] %}
HostName {{hostvars[hostname].external_ip}}
{% endif %}
{% endfor %}