2017-08-29 06:51:06 +00:00
|
|
|
---
|
|
|
|
- name: Install ntpd
|
2019-12-04 12:54:56 +00:00
|
|
|
yum:
|
|
|
|
name:
|
|
|
|
- ntp
|
|
|
|
- ntpdate
|
2019-12-11 04:36:43 +00:00
|
|
|
state: present
|
2017-08-29 07:10:26 +00:00
|
|
|
when: ansible_distribution == 'CentOS'
|
2017-08-29 06:51:06 +00:00
|
|
|
|
2018-02-05 09:37:14 +00:00
|
|
|
- name: Enable ntpd
|
2017-08-29 07:10:26 +00:00
|
|
|
service: name=ntpd enabled=yes state=started
|
|
|
|
when: ansible_distribution == 'CentOS'
|
|
|
|
|
|
|
|
- name: Install ntpd
|
2019-12-04 12:54:56 +00:00
|
|
|
apt:
|
|
|
|
pkg:
|
|
|
|
- ntp
|
|
|
|
- ntpdate
|
2019-12-11 04:36:43 +00:00
|
|
|
state: present
|
2017-08-29 07:10:26 +00:00
|
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
|
|
|
|
2018-02-05 09:37:14 +00:00
|
|
|
- name: Enable ntpd
|
2017-08-29 07:10:26 +00:00
|
|
|
service: name=ntp enabled=yes state=started
|
|
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
2018-02-05 09:37:14 +00:00
|
|
|
...
|