Sfoglia il codice sorgente

only add hostname if external_ip is defined

systemd-xsession
parent
commit
8c82dbf3e4
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. +2
    -0
      templates/ssh.config.j2

+ 2
- 0
templates/ssh.config.j2 Vedi File

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