You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffmyk-ansible/roles/install_ntp/tasks/main.yml

13 lines
212 B
YAML

---
- name: install ntp
pacman:
update_cache: yes
name: ntp
state: present
- name: enable ntp at boot and start it
systemd:
name: ntpd.service
enabled: yes
state: started