2024-09/05/old.ntp/ntp_yum.yml

18 lines
309 B
YAML
Raw Normal View History

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