ceph-ansible/roles/ceph-common/tasks/misc/ntp_redhat.yml

12 lines
213 B
YAML
Raw Normal View History

---
- include: ../checks/check_ntp_redhat.yml
when: ansible_os_family == 'RedHat'
- name: start the ntp service
service:
name: ntpd
enabled: yes
state: started
when:
- ntp_pkg_query.rc == 0