Skip to content

Commit f8a56c2

Browse files
bmwiedemannJanZerebecki
authored andcommitted
ntp: Do not use rate-limiting (bsc#1179161)
because that can block crowbar_join /usr/sbin/crowbar_join@139(sync_time): /usr/sbin/ntpdate -u 10.162.184.10 10.162 .184.82 10.162.184.83 18 Nov 19:52:20 ntpdate[12664]: 10.162.184.10 rate limit response from server. 18 Nov 19:52:27 ntpdate[12664]: 10.162.184.83 rate limit response from server. 18 Nov 19:52:27 ntpdate[12664]: no server suitable for synchronization found /usr/sbin/crowbar_join@142(sync_time): tries_left=108 /usr/sbin/crowbar_join@143(sync_time): echo_verbose 'Waiting for NTP server(s) (cherry picked from commit 27bbc4e)
1 parent b3ad722 commit f8a56c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chef/cookbooks/ntp/templates/default/ntp.conf.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ restrict -6 default ignore
4343
restrict <%= @admin_subnet %> mask <%= @admin_netmask %> notrap nomodify nopeer noquery
4444

4545
# Exchange time with external NTP servers, but don't allow configuration
46-
# and use rate-limiting.
46+
# Do not use rate-limiting, because that can block crowbar_join. (bsc#1179161)
4747
<% @ntp_servers.each do |ntp_server| -%>
48-
restrict <%= ntp_server %> kod limited notrap nomodify nopeer noquery
48+
restrict <%= ntp_server %> kod notrap nomodify nopeer noquery
4949
<% end -%>
5050

5151
<% else -%>

0 commit comments

Comments
 (0)