]> git.openstreetmap.org Git - chef.git/blob - cookbooks/ntp/README.md
Disable mptsas status reporting for now
[chef.git] / cookbooks / ntp / README.md
1 DESCRIPTION
2 ===========
3
4 Installs and configures ntp, optionally set up a local NTP server.
5
6 USAGE
7 =====
8
9 Set up the ntp attributes in a role. For example in a base.rb role applied to all nodes:
10
11     "ntp" => {
12       "servers" => "time.int.example.org"
13     }
14
15 Then in an ntpserver.rb role that is applied to NTP servers:
16
17     "ntp" => {
18       "is_server" => "true",
19       "servers" => "0.us.pool.ntp.org"
20     }
21
22 The time.int.example.org used in the base role is a CNAME for the NTP server.
23
24 LICENSE AND AUTHOR
25 ==================
26
27 Author:: Joshua Timberman (<joshua@opscode.com>)
28
29 Copyright 2009, Opscode, Inc.
30
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
34
35     http://www.apache.org/licenses/LICENSE-2.0
36
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.