ceph-ansible/roles/ceph-common/tasks/checks/check_ntp_debian.yml

9 lines
195 B
YAML

---
- name: check ntp installation on debian
command: dpkg -s ntp
register: ntp_pkg_query
ignore_errors: true
always_run: true
changed_when: false
when: ansible_os_family == 'Debian'