2026-06-24 20:17:46 -04:00
|
|
|
---
|
2026-06-30 15:36:08 -04:00
|
|
|
- name: Définir le fuseau horaire (intrant global chezlepro_timezone)
|
|
|
|
|
community.general.timezone:
|
|
|
|
|
name: "{{ chrony_timezone }}"
|
|
|
|
|
when: chrony_timezone | length > 0
|
|
|
|
|
|
2026-06-24 20:17:46 -04:00
|
|
|
- name: Installer chrony
|
|
|
|
|
ansible.builtin.apt:
|
|
|
|
|
name: chrony
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: Activer et démarrer chrony
|
|
|
|
|
ansible.builtin.systemd:
|
|
|
|
|
name: chrony
|
|
|
|
|
enabled: true
|
|
|
|
|
state: started
|