forked from infra/ansible
1
0
Fork 0
infra/roles/ntp/tasks/FreeBSD.yml

11 lines
214 B
YAML

---
# ntp is already installed on FreeBSD
- name: Configure ntp
template: src=ntp.conf.j2 dest=/etc/ntp.conf
notify: Restart ntpd
- name: Start the ntp service
service: name=ntpd state=started enabled=yes