Merge "Enable ntp iburst" into stable/ocata

This commit is contained in:
Zuul 2017-11-20 21:48:19 +00:00 committed by Gerrit Code Review
commit aaf911fade
2 changed files with 16 additions and 0 deletions

View File

@ -27,6 +27,14 @@ parameters:
have a sane default for Pacemaker deployments when
not configuring this parameter by default.
type: comma_delimited_list
NtpIburstEnable:
default: true
description: Specifies whether to enable the iburst option for every NTP
peer. If iburst is enabled, when the ntp server is unreachable
ntp will send a burst of eight packages instead of one. This
is designed to speed up the initial syncrhonization.
type: boolean
outputs:
role_data:
@ -35,6 +43,7 @@ outputs:
service_name: ntp
config_settings:
ntp::servers: {get_param: NtpServer}
ntp::iburst_enable: {get_param: NtpIburstEnable}
tripleo.ntp.firewall_rules:
'105 ntp':
dport: 123

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Enable the ntp iburst configuration for each server by default. As some
services are very sensitive to time syncronization, this will help speed
up the syncronization when servers are unavailable for a time. See
LP#1731883