We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are cases where one does not want any ntp servers. Perhaps a node is using pools, or perhaps it's only using peers.
However, #170 changed the behavior here. As implemented in https://github.com/rhass/ntp/blob/master/recipes/default.rb#L61-L69
if node['ntp']['servers'].empty? node.default['ntp']['servers'] = [ '0.pool.ntp.org', '1.pool.ntp.org', '2.pool.ntp.org', '3.pool.ntp.org', ] Chef::Log.debug 'No NTP servers specified, using default ntp.org server pools' end
I'm not sure this was intentional or accidental.
The text was updated successfully, but these errors were encountered:
Thanks for reporting. It looks like an unintended side effect of fixing this on mac os.
Sorry, something went wrong.
I might have misblamed #170, this may have always been true (which would represent a bug with my initial pools PR)
Regardless, I have fixed this in #178
No branches or pull requests
There are cases where one does not want any ntp servers. Perhaps a node is using pools, or perhaps it's only using peers.
However, #170 changed the behavior here. As
implemented in https://github.com/rhass/ntp/blob/master/recipes/default.rb#L61-L69
I'm not sure this was intentional or accidental.
The text was updated successfully, but these errors were encountered: