3d4093672a
This change converts the tripleo time role into two roles: - tripleo-ptp - tripleo-timezone This change will ensure we're able to cleanly install and setup ptp when needed while also providing a well defined interface for setting the timezone on systems. Change-Id: I0a2b2241a38f3d98ac421e6106fb81210961c1f5 Signed-off-by: Kevin Carter <kecarter@redhat.com>
13 lines
314 B
Django/Jinja
13 lines
314 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[global]
|
|
slaveOnly 1
|
|
domainNumber {{ tripleo_ptp_slave_mode }}
|
|
time_stamping {{ (tripleo_ptp_hardware_offload | bool) | ternary('hardware', 'software') }}
|
|
network_transport {{ tripleo_ptp_transport }}
|
|
udp_ttl 1
|
|
|
|
{% for interface in tripleo_ptp_interfaces %}
|
|
[{{ interface }}]
|
|
{% endfor %}
|