2022-01-01 19:24:52 +01:00
|
|
|
---
|
|
|
|
- name: Setup timesync config
|
2023-03-05 19:00:38 +01:00
|
|
|
ansible.builtin.template:
|
2022-01-01 19:24:52 +01:00
|
|
|
src: timesyncd.conf.template
|
|
|
|
dest: /etc/systemd/timesyncd.conf
|
|
|
|
notify: run Timedatectl
|
|
|
|
when: ansible_service_mgr == "systemd"
|
|
|
|
|
|
|
|
- name: set Timezone
|
2023-03-05 19:00:38 +01:00
|
|
|
ansible.builtin.timezone: name={{ timedatectl_timezone }}
|
2022-01-01 19:24:52 +01:00
|
|
|
when: ansible_service_mgr == "systemd"
|
|
|
|
|
|
|
|
- name: Reastart timesyncd to apply changes
|
|
|
|
when: ansible_service_mgr == "systemd"
|
|
|
|
ansible.builtin.systemd:
|
|
|
|
state: restarted
|
|
|
|
daemon_reload: yes
|
|
|
|
name: systemd-timesyncd
|
2022-04-16 19:55:29 +02:00
|
|
|
...
|