NTP/ansible/files/index.html
Frank Villaro-Dixon 39cf2e14c2 add nginx
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-06-20 11:03:28 +02:00

20 lines
No EOL
446 B
HTML

<html>
<head>
<title>NTP server {{ ansible_hostname }}</title>
</head>
<body>
<h1>NTP server {{ ansible_hostname }}</h1>
<ul>
<li>Default ip: {{bgp_ipv6}}</li>
<li>Backup ips:
<ul>
{% for host in groups['all'] -%}
{%- if host != inventory_hostname -%}
<li>{{ hostvars[host]['bgp_ipv6'] }} ({{ host }})</li>
{% endif -%}
{% endfor %}
</ul>
</li>
</ul>
</body>
</html>