install-raspberry/playbook-chrony.yml
2024-06-01 10:04:43 +02:00

29 lines
542 B
YAML

---
- hosts: localhost
tasks:
- name: install chrony
yum:
name: chrony
state: present
- name: config time server
copy:
src: chrony/chrony.conf
dest: /etc/chrony.conf
- name: disable chrony ipv6
copy:
src: chrony/chronyd
dest: /etc/sysconfig/chronyd
#replace:
# path: /etc/sysconfig/chronyd
# regexp: '^OPTIONS=""'
# replace: 'OPTIONS="-4"'
- name: start and active service chronyd
systemd:
name: chronyd
enabled: true
state: started