13 lines
207 B
Plaintext
13 lines
207 B
Plaintext
|
# 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 %}
|
||
|
|