2024-09/05/old.ntp/ntp_apt.yml
2024-09-17 13:06:57 +02:00

18 lines
307 B
YAML

---
- hosts: apt
tasks:
- name: Install NTP
apt: name=ntp state=latest
- name: Copy ntp.conf
copy: src=ntp.conf dest=/etc/ntp.conf backup=yes
- name: Restart NTP
service: name=ntp state=restarted
- name: Enable NTP
service: name=ntp enabled=yes state=started