25 lines
373 B
YAML
25 lines
373 B
YAML
|
---
|
||
|
- name: Install Chrony
|
||
|
package:
|
||
|
name: chrony
|
||
|
state: latest
|
||
|
|
||
|
|
||
|
- name: Template chrony.conf
|
||
|
template:
|
||
|
src: etc/chrony/chrony.conf.j2
|
||
|
dest: /etc/chrony/chrony.conf
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|
||
|
backup: yes
|
||
|
notify: Restart Chrony
|
||
|
|
||
|
|
||
|
- name: Enable Chrony daemon
|
||
|
service:
|
||
|
name: "{{ chrony_service_name }}"
|
||
|
enabled: True
|
||
|
|
||
|
|