mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
24 lines
573 B
YAML
24 lines
573 B
YAML
---
|
|
- name: Install ntpd
|
|
yum: name="{{item}}" state=installed
|
|
with_items:
|
|
- ntp
|
|
- ntpdate
|
|
when: ansible_distribution == 'CentOS'
|
|
|
|
- name: enable ntpd
|
|
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'
|
|
|
|
- name: enable ntpd
|
|
service: name=ntp enabled=yes state=started
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
|
|