---
- name: Install ntp
become: true
ansible.builtin.apt:
update_cache: true
pkg:
- ntp
- name: Enable and start ntp service
ansible.builtin.service:
name: ntp
enabled: true
state: started