2024-11-26 11:54:55 +00:00
|
|
|
- name: Install CHRONY packages
|
2024-11-26 11:07:33 +00:00
|
|
|
apt:
|
|
|
|
name: chrony
|
|
|
|
state: present
|
|
|
|
install_recommends: no
|
2024-11-26 11:54:55 +00:00
|
|
|
- name: Set CHRONY generic configuration
|
2024-11-26 11:07:33 +00:00
|
|
|
template:
|
|
|
|
src: timeserver_custom.conf
|
|
|
|
dest: /etc/chrony/conf.d/custom.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rw,g=r,o=r
|
|
|
|
notify: restart-chrony
|
2024-11-22 09:15:34 +00:00
|
|
|
|
|
|
|
|