mirror of
https://github.com/schnidrig/openhab-ansible
synced 2026-01-12 00:48:46 +01:00
29 lines
509 B
YAML
29 lines
509 B
YAML
---
|
|
|
|
- name: update ntp.conf
|
|
lineinfile:
|
|
dest=/etc/ntp.conf
|
|
regexp="^server\s+.*debian.pool.ntp.org.*"
|
|
insertafter="^server\s.*"
|
|
state=absent
|
|
notify: restart ntp
|
|
tags:
|
|
- ntp
|
|
- ntpconfig
|
|
|
|
- name: update ntp.conf
|
|
lineinfile:
|
|
dest=/etc/ntp.conf
|
|
insertafter="# pool:"
|
|
line="server {{item}} iburst"
|
|
with_items: "{{ntp}}"
|
|
notify: restart ntp
|
|
tags:
|
|
- ntp
|
|
- ntpconfig
|
|
|
|
- name: Start the ntp service
|
|
service: name=ntp state=started enabled=true
|
|
tags: ntp
|
|
|