ansible-common/tasks/ntp.yml
Frank Villaro-Dixon f2f505cfc8 add more shit
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-10-04 20:37:55 +02:00

9 lines
251 B
YAML

- name: Configure NTP server for systemd-timesyncd
ini_file:
path: /etc/systemd/timesyncd.conf
section: Time
option: NTP
value: "{{ vars.ntp_servers | join(' ') }}"
notify: restart systemd-timesyncd
when: vars.setup_ntp is true