ansible-common/tasks/ntp.yml
Frank Villaro-Dixon 3e20eb8828 Create basic repo
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-10-04 18:52:39 +02:00

8 lines
220 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