2 maintainer "Opscode, Inc."
3 maintainer_email "cookbooks@opscode.com"
5 description "Installs and configures ntp as a client or server"
6 long_description IO.read(File.join(File.dirname(__FILE__), "README.md"))
9 recipe "ntp", "Installs and configures ntp either as a server or client"
11 %w(ubuntu debian redhat centos fedora).each do |os|
16 :display_name => "NTP",
17 :description => "Hash of NTP attributes",
20 attribute "ntp/service",
21 :display_name => "NTP Service",
22 :description => "Name of the NTP service",
25 attribute "ntp/is_server",
26 :display_name => "NTP Is Server?",
27 :description => "Set to true if this is an NTP server",
30 attribute "ntp/servers",
31 :display_name => "NTP Servers",
32 :description => "Array of servers we should talk to",
34 :default => ["0.us.pool.ntp.org", "1.us.pool.ntp.org"]