2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 13:09:01 +00:00
bench/playbooks/roles/ntpd/tasks/main.yml
2019-12-18 14:14:12 +05:30

25 lines
548 B
YAML

---
- name: Install ntpd
yum:
name:
- ntp
- ntpdate
state: present
when: ansible_distribution == 'CentOS'
- name: Enable ntpd
service: name=ntpd enabled=yes state=started
when: ansible_distribution == 'CentOS'
- name: Install ntpd
apt:
pkg:
- ntp
- ntpdate
state: present
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'
...