---
- name: check ntp installation on debian
command: dpkg -s ntp
register: ntp_pkg_query
ignore_errors: true
check_mode: no
changed_when: false
when:
- ansible_os_family == 'Debian'
- name: install ntp on debian
package:
name: ntp
state: present