Pārlūkot izejas kodu

only add hostname if external_ip is defined

systemd-xsession
vecāks
revīzija
8c82dbf3e4
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. +2
    -0
      templates/ssh.config.j2

+ 2
- 0
templates/ssh.config.j2 Parādīt failu

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