NTP: deploy everywhere #97

Merged
jeltz merged 3 commits from ntp into master 2022-08-26 00:08:02 +02:00
2 changed files with 10 additions and 2 deletions
Showing only changes of commit b00d5bc09e - Show all commits

View file

@ -1,6 +1,6 @@
--- ---
- name: Restart chronyd - name: Restart chronyd
systemd: systemd:
name: chronyd.service name: chrony.service
state: restarted state: restarted
... ...

View file

@ -1,4 +1,12 @@
--- ---
- name: Uninstall ntp and sntp
apt:
name:
- sntp
- ntp
- systemd-timesyncd
state: absent
- name: Install chronyd - name: Install chronyd
apt: apt:
name: chrony name: chrony
@ -18,7 +26,7 @@
- name: Enable and start chronyd - name: Enable and start chronyd
systemd: systemd:
name: chronyd.service name: chrony.service
enabled: true enabled: true
state: started state: started
... ...