Changeset 3799 in MondoRescue for branches/3.3/ansible/roles/ntp
- Timestamp:
- Feb 16, 2024, 12:27:34 AM (15 months ago)
- Location:
- branches/3.3/ansible/roles/ntp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/ansible/roles/ntp/tasks/main.yml
r3795 r3799 1 1 --- 2 2 3 - name: Check that ntp is installed 4 urpmi: name=ntp state=installed no_recommends=yes 5 tags: ntp 3 - name: Check that ntpsec is installed 4 urpmi: name=ntpsec state=installed no_recommends=yes 6 5 7 6 - name: Check that ntp is configured … … 12 11 notify: 13 12 - restart ntpd 14 tags: ntp15 13 16 14 - name: Check that ntpd is running and enabled 17 15 service: name=ntpd state=started enabled=yes 18 tags: ntp -
branches/3.3/ansible/roles/ntp/templates/ntp.conf.j2
r3795 r3799 28 28 # 29 29 driftfile /var/lib/ntp/drift 30 # Incorrect starting with mga9 31 #multicastclient 224.0.1.1 # listen on default 224.0.1.1 30 multicastclient 224.0.1.1 # listen on default 224.0.1.1 32 31 broadcastdelay 0.008 33 32 … … 52 51 # the administrative functions. 53 52 restrict 127.0.0.1 54 #restrict ::153 restrict ::1
Note:
See TracChangeset
for help on using the changeset viewer.