2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00
bench/playbooks/production/roles/ntpd/tasks/main.yml

9 lines
169 B
YAML
Raw Normal View History

2017-08-29 06:51:06 +00:00
---
- name: Install ntpd
yum: name="{{item}}" state=installed
with_items:
- ntp
- ntpdate
- name: enable ntpd
service: name=ntpd enabled=yes state=started