mirror of https://github.com/ceph/ceph-ansible.git
12 lines
161 B
YAML
12 lines
161 B
YAML
|
---
|
||
|
- name: install ntp
|
||
|
package:
|
||
|
name: ntp
|
||
|
state: present
|
||
|
|
||
|
- name: start the ntp service
|
||
|
service:
|
||
|
name: ntpd
|
||
|
enabled: yes
|
||
|
state: started
|