2024-09/07/uebung_1.j2

13 lines
207 B
Plaintext
Raw Normal View History

2024-09-18 07:00:52 +00:00
# Meine NTP-Server:
## Als Liste
{{ chrony_pools }}
## Als String mit join-Filter
{{ chrony_pools|join(", ") }}
## In einer for-Schleife
{% for n in chrony_pools %}{{ loop.index }}: {{ n }}
{% endfor %}