4 Installs and configures ntp, optionally set up a local NTP server.
 
   9 Set up the ntp attributes in a role. For example in a base.rb role applied to all nodes:
 
  12       "servers" => "time.int.example.org"
 
  15 Then in an ntpserver.rb role that is applied to NTP servers:
 
  18       "is_server" => "true",
 
  19       "servers" => "0.us.pool.ntp.org"
 
  22 The time.int.example.org used in the base role is a CNAME for the NTP server.
 
  27 Author:: Joshua Timberman (<joshua@opscode.com>)
 
  29 Copyright 2009, Opscode, Inc.
 
  31 Licensed under the Apache License, Version 2.0 (the "License");
 
  32 you may not use this file except in compliance with the License.
 
  33 You may obtain a copy of the License at
 
  35     http://www.apache.org/licenses/LICENSE-2.0
 
  37 Unless required by applicable law or agreed to in writing, software
 
  38 distributed under the License is distributed on an "AS IS" BASIS,
 
  39 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  40 See the License for the specific language governing permissions and
 
  41 limitations under the License.