cookbook 'ntp', '= 1.0.0'
ntp
(90) Versions
1.0.0
-
-
5.1.2
-
5.1.1
-
5.1.0
-
5.0.17
-
5.0.16
-
5.0.15
-
5.0.14
-
5.0.13
-
5.0.12
-
5.0.11
-
5.0.10
-
5.0.9
-
5.0.8
-
5.0.7
-
5.0.6
-
5.0.5
-
5.0.4
-
5.0.3
-
5.0.2
-
5.0.1
-
5.0.0
-
4.0.0
-
3.12.5
-
3.12.4
-
3.12.3
-
3.12.2
-
3.12.1
-
3.12.0
-
3.11.0
-
3.10.2
-
3.10.1
-
3.10.0
-
3.9.1
-
3.9.0
-
3.8.0
-
3.7.0
-
3.6.2
-
3.6.1
-
3.6.0
-
3.5.6
-
3.5.5
-
3.5.4
-
3.5.3
-
3.5.2
-
3.5.1
-
3.5.0
-
3.4.0
-
3.3.1
-
3.3.0
-
3.2.0
-
3.1.0
-
3.0.0
-
2.0.3
-
2.0.2
-
2.0.1
-
2.0.0
-
1.11.1
-
1.11.0
-
1.10.1
-
1.10.0
-
1.9.2
-
1.9.1
-
1.9.0
-
1.8.6
-
1.8.4
-
1.8.2
-
1.8.0
-
1.7.0
-
1.6.8
-
1.6.6
-
1.6.5
-
1.6.4
-
1.6.2
-
1.6.0
-
1.5.4
-
1.5.0
-
1.4.0
-
1.3.2
-
1.3.0
-
1.2.0
-
1.1.8
-
1.1.6
-
1.1.4
-
1.1.2
-
1.1.0
-
1.0.1
-
1.0.0
-
0.8.2
-
0.8.1
-
0.7.0
Follow251
- 5.1.2
- 5.1.1
- 5.1.0
- 5.0.17
- 5.0.16
- 5.0.15
- 5.0.14
- 5.0.13
- 5.0.12
- 5.0.11
- 5.0.10
- 5.0.9
- 5.0.8
- 5.0.7
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.0
- 3.12.5
- 3.12.4
- 3.12.3
- 3.12.2
- 3.12.1
- 3.12.0
- 3.11.0
- 3.10.2
- 3.10.1
- 3.10.0
- 3.9.1
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.6
- 3.5.5
- 3.5.4
- 3.5.3
- 3.5.2
- 3.5.1
- 3.5.0
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.11.1
- 1.11.0
- 1.10.1
- 1.10.0
- 1.9.2
- 1.9.1
- 1.9.0
- 1.8.6
- 1.8.4
- 1.8.2
- 1.8.0
- 1.7.0
- 1.6.8
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.2
- 1.6.0
- 1.5.4
- 1.5.0
- 1.4.0
- 1.3.2
- 1.3.0
- 1.2.0
- 1.1.8
- 1.1.6
- 1.1.4
- 1.1.2
- 1.1.0
- 1.0.1
- 1.0.0
- 0.8.2
- 0.8.1
- 0.7.0
Installs and configures ntp as a client or server
cookbook 'ntp', '= 1.0.0', :supermarket
knife supermarket install ntp
knife supermarket download ntp
DESCRIPTION
Installs and configures ntp, optionally set up a local NTP server.
REQUIREMENTS
Should work on any Red Hat-family or Debian-family Linux distribution.
USAGE
Set up the ntp attributes in a role. For example in a base.rb role applied to all nodes:
name "base"
description "Role applied to all systems"
default_attributes(
"ntp" => {
"servers" => ["time.int.example.org"]
}
)
Then in an ntpserver.rb role that is applied to NTP servers (e.g., time.int.example.org):
name "ntp_server"
description "Role applied to the system that should be an NTP server."
default_attributes(
"ntp" => {
"is_server" => "true",
"servers" => ["0.pool.ntp.org", "1.pool.ntp.org"]
}
)
LICENSE AND AUTHOR
Author:: Joshua Timberman (joshua@opscode.com)
Copyright 2009-2011, 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.
Dependent cookbooks
This cookbook has no specified dependencies.