mirror of
https://github.com/roles-ansible/ansible_role_ntp.git
synced 2024-08-16 12:59:49 +02:00
24 lines
514 B
YAML
24 lines
514 B
YAML
---
|
|
# defaults file for ansible-role-ntp
|
|
|
|
# Restrict acces on ntp server
|
|
# Default is: ::1, 127.0.0.1
|
|
ntp_restrict:
|
|
- default nomodify notrap nopeer noquery
|
|
- 127.0.0.1
|
|
- ::1
|
|
|
|
# Ntp server to use for date synchronization
|
|
# Default is worldwide pool
|
|
ntp_servers:
|
|
- 0.pool.ntp.org iburst
|
|
- 1.pool.ntp.org iburst
|
|
- 2.pool.ntp.org iburst
|
|
- 3.pool.ntp.org iburst
|
|
|
|
# Enable or disable ntp statistics
|
|
# Default is false
|
|
ntp_statistics: false
|
|
|
|
# version check for this playbook
|
|
submodules_versioncheck: true
|