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