1
0
forked from infra/ansible
infra/roles/ntp/tasks/Debian.yml
2015-12-13 18:51:08 +01:00

12 lines
224 B
YAML

---
- name: Install ntp
apt: name=ntp state=present
- name: Configure ntp
template: src=ntp.conf.j2 dest=/etc/ntp.conf
notify: Restart ntp
- name: Start the ntp service
service: name=ntp state=started enabled=yes