2013-12-12 01:33:01 +00:00

65 lines
1.7 KiB
Ruby

#
# Cookbook Name:: ntp
# Recipe:: default
# Author:: Joshua Timberman (<joshua@opscode.com>)
# Author:: Tim Smith (<tsmith@limelight.com>)
#
# Copyright 2009, 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.
if node['platform'] == "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 00755
end
end
cookbook_file node['ntp']['leapfile'] do
owner node['ntp']['conf_owner']
group node['ntp']['conf_group']
mode 00644
end
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"
]
log "No NTP servers specified, using default ntp.org server pools"
end
template node['ntp']['conffile'] do
source "ntp.conf.erb"
owner node['ntp']['conf_owner']
group node['ntp']['conf_group']
mode 00644
notifies :restart, "service[#{node['ntp']['service']}]"
end
service node['ntp']['service'] do
supports :status => true, :restart => true
action [:enable, :start]
end