Переглянути джерело

only add hostname if external_ip is defined

systemd-xsession
Markus Katharina Brechtel 4 роки тому
джерело
коміт
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 %}