diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2021-09-27 13:28:26 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2021-09-27 13:29:19 +0200 |
commit | 876be1edaf9758bf35ec8b1f73fb32aa4ceaaa21 (patch) | |
tree | 02845c0cdcaca9ab687232f80518ef27aaf19171 /roles/space_server/templates/avahi-hosts.j2 | |
parent | cbc58b7e78595341fec445e8a573b5715de2d83e (diff) | |
download | labitat-ansible-876be1edaf9758bf35ec8b1f73fb32aa4ceaaa21.tar.gz labitat-ansible-876be1edaf9758bf35ec8b1f73fb32aa4ceaaa21.tar.xz labitat-ansible-876be1edaf9758bf35ec8b1f73fb32aa4ceaaa21.zip |
space_server: vars: use dictionary for local_hosts
This allows us to look up info on specific hosts without searching
through the whole list.
Diffstat (limited to 'roles/space_server/templates/avahi-hosts.j2')
-rw-r--r-- | roles/space_server/templates/avahi-hosts.j2 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/roles/space_server/templates/avahi-hosts.j2 b/roles/space_server/templates/avahi-hosts.j2 index 1e371e6..e64265a 100644 --- a/roles/space_server/templates/avahi-hosts.j2 +++ b/roles/space_server/templates/avahi-hosts.j2 @@ -1,16 +1,16 @@ -{% for host in local_hosts %} -{% if 'mdns' not in host or host.mdns %} -{% if 'ipv4' in host %} -{% for ip in host.ipv4 %} +{% for name, info in local_hosts.items() %} +{% if 'mdns' not in info or info.mdns %} +{% if 'ipv4' in info %} +{% for ip in info.ipv4 %} {% if loop.index <= 1 %} -{{ ip }} {{ host.name }}.local +{{ ip }} {{ name }}.local {% endif %} {% endfor %} {% endif %} -{% if 'ipv6' in host %} -{% for ip in host.ipv6 %} +{% if 'ipv6' in info %} +{% for ip in info.ipv6 %} {% if loop.index <= 1 %} -{{ ip }} {{ host.name }}.local +{{ ip }} {{ name }}.local {% endif %} {% endfor %} {% endif %} |