2017-08-29 06:51:06 +00:00
|
|
|
---
|
|
|
|
- name: Install ntpd
|
|
|
|
yum: name="{{item}}" state=installed
|
|
|
|
with_items:
|
|
|
|
- ntp
|
|
|
|
- ntpdate
|
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
|
|
|
|
apt: name="{{item}}" state=installed
|
|
|
|
with_items:
|
|
|
|
- ntp
|
|
|
|
- ntpdate
|
|
|
|
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
|
|
|
...
|