# # Cookbook Name:: ntp # Recipe:: default # Author:: Joshua Timberman () # Author:: Tim Smith () # # Copyright 2009-2013, Opscode, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ::Chef::Resource.send(:include, Opscode::Ntp::Helper) if platform_family?('windows') include_recipe 'ntp::windows_client' else node['ntp']['packages'].each do |ntppkg| package ntppkg end [node['ntp']['varlibdir'], node['ntp']['statsdir']].each do |ntpdir| directory ntpdir do owner node['ntp']['var_owner'] group node['ntp']['var_group'] mode '0755' end end cookbook_file node['ntp']['leapfile'] do owner node['ntp']['conf_owner'] group node['ntp']['conf_group'] mode '0644' source 'ntp.leapseconds' notifies :restart, "service[#{node['ntp']['service']}]" end include_recipe 'ntp::apparmor' if node['ntp']['apparmor_enabled'] end unless node['ntp']['servers'].size > 0 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 if node['ntp']['listen'].nil? && !node['ntp']['listen_network'].nil? if node['ntp']['listen_network'] == 'primary' node.set['ntp']['listen'] = node['ipaddress'] else require 'ipaddr' net = IPAddr.new(node['ntp']['listen_network']) node['network']['interfaces'].each do |iface, addrs| addrs['addresses'].each do |ip, params| addr = IPAddr.new(ip) if params['family'].eql?('inet') || params['family'].eql?('inet6') node.set['ntp']['listen'] = addr if net.include?(addr) end end end end node.default['ntp']['tinker']['panic'] = 0 if node['virtualization'] && node['virtualization']['role'] == 'guest' && node['ntp']['disable_tinker_panic_on_virtualization_guest'] template node['ntp']['conffile'] do source 'ntp.conf.erb' owner node['ntp']['conf_owner'] group node['ntp']['conf_group'] mode '0644' notifies :restart, "service[#{node['ntp']['service']}]" unless node['ntp']['conf_restart_immediate'] notifies :restart, "service[#{node['ntp']['service']}]", :immediately if node['ntp']['conf_restart_immediate'] variables( lazy { { :ntpd_supports_native_leapfiles => ntpd_supports_native_leapfiles } } ) end if node['ntp']['sync_clock'] execute "Stop #{node['ntp']['service']} in preparation for ntpdate" do command '/bin/true' action :run notifies :stop, "service[#{node['ntp']['service']}]", :immediately end execute 'Force sync system clock with ntp server' do command 'ntpd -q' action :run notifies :start, "service[#{node['ntp']['service']}]" end end execute 'Force sync hardware clock with system clock' do command 'hwclock --systohc' action :run only_if { node['ntp']['sync_hw_clock'] && !platform_family?('windows') } end service node['ntp']['service'] do supports :status => true, :restart => true action [:enable, :start] end