xoxys.chrony/tasks/setup.yml
Robert Kaussow b1228ae022
Some checks failed
continuous-integration/drone/push Build is failing
initial commit
2022-04-10 17:26:44 +02:00

22 lines
447 B
YAML

---
- block:
- name: Install chrony
package:
name: chrony
state: present
- name: Deploy configuration file
template:
src: etc/chrony.conf.j2
dest: /etc/chrony.conf
notify: __chrony_restart
- name: Ensure service is up and running
systemd:
name: chronyd.service
state: started
daemon_reload: True
enabled: True
become: True
become_user: root