additional course material RH294
Olaf Bohlen
2019-12-04 96eda8797a3510ea39108406fdbedd1d0a1d47e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Welcome to the server {{ ansible_facts['hostname'] }}.
This system proudly runs {{ ansible_facts['distribution'] }} {{ ansible_facts['distribution_version'] }}.
 
{# this is a comment #}
{% if ansible_machine == 'x86_64' %}
We are running 64bit mode.
{% endif %}
 
This system has the following IPv4 addresses configured:
{% for myip in ansible_facts['all_ipv4_addresses'] %}
- IP #{{ loop.index }}: {{ myip }}
 
Debug: {{ loop }}
{% endfor %}