Sync defaults for chrony with tripleo-heat-templates

Use the same defaults in the chrony role that are set when we use the
role from tripleo-heat-templates:
https://opendev.org/openstack/tripleo-heat-templates/src/branch/master/deployment/timesync/chrony-baremetal-ansible.yaml

Signed-off-by: James Slagle <jslagle@redhat.com>
Change-Id: I42c65495e51ecd24447341f1c1c4f02f88be5efe
This commit is contained in:
James Slagle 2022-10-13 07:52:23 -04:00
parent 9528e8a0b7
commit 62654c88fa
1 changed files with 9 additions and 4 deletions

View File

@ -1,14 +1,19 @@
---
chrony_debug: False
chrony_role_action: all
chrony_global_server_settings: iburst
chrony_ntp_servers: []
chrony_ntp_pools: ['pool.ntp.org']
chrony_global_server_settings: iburst minpoll 6 maxpoll 10
chrony_global_pool_settings: iburst minpoll 6 maxpoll 10
chrony_ntp_servers:
- '0.pool.ntp.org'
- '1.pool.ntp.org'
- '2.pool.ntp.org'
- '3.pool.ntp.org'
chrony_ntp_pools: []
chrony_ntp_peers: []
chrony_bind_addresses:
- 127.0.0.1
- ::1
chrony_acl_rules: []
chrony_acl_rules: ['deny all']
chrony_service_name: chronyd
chrony_manage_service: True
chrony_manage_package: True